-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 972 Bytes
/
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
{
"name": "air-quality-api",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"engines": {
"node": "14.x.x",
"npm": "6.x.x"
},
"scripts": {
"build-ts": "tsc",
"postinstall": "npm run build-ts",
"start": "node dist/server.js",
"serve": "tsc && node dist/server.js",
"nm": "nodemon --exec 'ts-node' ./src/server.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"nodemonConfig": {
"ext": "*.ts, *.js, *.json, *.mjs",
"ignore": [
".git",
"node_modules/**/node_modules"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"redis": "^3.1.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.8",
"nodemon": "^2.0.2",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.3"
}
}