-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 993 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
44
45
{
"name": "cleanairtracker",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "tsc",
"start": "node dist/app.js",
"dev": "nodemon"
},
"nodemonConfig": {
"exec": "ts-node ./src/app.ts",
"watch": [
"src"
],
"ext": "ts"
},
"dependencies": {
"axios": "^1.6.8",
"bootstrap": "^5.3.3",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^16.4.5",
"express": "~4.16.1",
"fs": "^0.0.1-security",
"http-errors": "~1.6.3",
"https": "^1.0.0",
"ioredis": "^5.4.1",
"morgan": "~1.9.1",
"node-cron": "^3.0.3",
"node-fetch": "^3.3.2",
"pg": "^8.11.5",
"pug": "2.0.0-beta11",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.12.7",
"@types/node-cron": "^3.0.11",
"@types/node-fetch": "^2.6.11",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}