-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "fmodel-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "tsc && node --unhandled-rejections=strict ./dist/app.js",
"debug": "set DEBUG=* && npm start",
"prod": "export NODE_ENV=production && tsc && node ./dist/app.js",
"test-debug": "export DEBUG=* && npm test"
},
"author": "Asval",
"license": "ISC",
"dependencies": {
"argon2": "^0.27.2",
"axios": "^0.27.2",
"cors": "^2.8.5",
"debug": "^4.3.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.10.0",
"express-winston": "^4.1.0",
"helmet": "^4.5.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.5",
"nanoid": "^3.1.22",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/argon2": "^0.15.0",
"@types/cors": "^2.8.10",
"@types/debug": "^4.1.5",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/helmet": "^4.0.0",
"@types/jsonwebtoken": "^8.5.1",
"source-map-support": "^0.5.19",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
}
}