-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.41 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.41 KB
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
{
"name": "api-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./dist/app.js",
"debug": "export DEBUG=* && tsc && npm start",
"test": "mocha -r ts-node/register 'test/**/*.test.ts' --unhandled-rejections=strict",
"test-debug": "export DEBUG=* && npm test",
"postinstall": "tsc"
},
"author": "",
"license": "ISC",
"dependencies": {
"argon2": "^0.28.2",
"cors": "^2.8.5",
"debug": "^4.3.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-validator": "^6.12.1",
"express-winston": "^4.1.0",
"google-auth-library": "^7.9.1",
"helmet": "^4.6.0",
"insomnia-documenter": "^0.5.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.3",
"shortid": "^2.2.16",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.1.6",
"winston": "^3.3.3",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.5",
"@types/mocha": "^9.0.0",
"@types/shortid": "^0.0.29",
"@types/supertest": "^2.0.11",
"chai": "^4.3.4",
"mocha": "^9.1.1",
"nodemon": "^2.0.12",
"source-map-support": "^0.5.19",
"supertest": "^6.1.6",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"typescript": "^4.3.5"
},
"engines": { "node": "16.5.0" }
}