-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.21 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
{
"name": "rest",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "tsc && node --unhandled-rejections=strict ./dist/app.js",
"debug": "export DEBUG=* && npm run start",
"test": "mocha -r ts-node/register 'test/**/*.test.ts' --unhandled-rejections=strict",
"test-debug": "export DEBUG=* && npm test"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"argon2": "^0.28.2",
"cors": "^2.8.5",
"debug": "^4.3.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-validator": "^6.12.0",
"express-winston": "^4.1.0",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.14",
"shortid": "^2.2.16",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/chai": "^4.2.19",
"@types/cors": "^2.8.10",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.12",
"@types/jsonwebtoken": "^8.5.2",
"@types/mocha": "^8.2.2",
"@types/shortid": "0.0.29",
"@types/supertest": "^2.0.11",
"chai": "^4.3.4",
"mocha": "^9.0.1",
"source-map-support": "^0.5.19",
"supertest": "^6.1.3",
"ts-node": "^10.0.0",
"tslint": "^6.1.3",
"typescript": "^4.3.4"
}
}