-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.79 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "meteorology",
"version": "0.6.0",
"engines": {
"node": "20.x"
},
"description": "a simple api for getting meteorological data by zipcode",
"repository": {
"type": "git",
"url": "https://github.com/Crucible-Standard/meteorology"
},
"bugs": {
"url": "https://github.com/Crucible-Standard/meteorology/issues"
},
"homepage": "https://github.com/Crucible-Standard/meteorology#readme",
"license": "MIT",
"contributors": [
"Beau Bouchard <https://github.com/BeauBouchard>"
],
"scripts": {
"serve": "node dist/src/server",
"start": "ts-node src/server",
"heroku-start": "ts-node src/server",
"typings": "src/index",
"build": "tsc",
"postbuild": "cp package.json dist/package.json && cd dist && npm install",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage | ./node_modules/.bin/codecov",
"test:lint": "eslint . 'src/**/*.ts'",
"test:lint:fix": "eslint . --fix 'src/**/*.ts'"
},
"dependencies": {
"axios": "^1.7.2",
"body-parser": "^1.20.2",
"compression": "1.7.4",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"winston": "^3.13.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/helmet": "4.0.0",
"@types/jest": "28.1.4",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"codecov": "3.8.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "4.2.1",
"jest": "28.1.2",
"nodemon": "^3.1.3",
"prettier": "2.8.8",
"ts-jest": "28.0.5"
}
}