-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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
{
"name": "G2iNodeJSTest",
"version": "1.0.0",
"description": "G2i NodeJS Test",
"main": "./dist/index.js",
"scripts": {
"test": "tsc && set NODE_ENV=test && jest --env=node --no-cache -i --detectOpenHandles --coverage --forceExit ./dist/test",
"start": "tsc && node dist/index.js"
},
"engines": {
"node": "15.x",
"npm": "7.x"
},
"jest": {
"testEnvironment": "node"
},
"author": "Will Abule",
"license": "ISC",
"dependencies": {
"compression": "^1.7.4",
"config": "^3.3.6",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"helmet": "^4.4.1",
"joi": "^17.4.0",
"joi-objectid": "^3.0.1",
"mongodb-collection-query-with-mongoose": "^2.0.17",
"mongoose": "^5.12.0",
"winston": "^3.3.3",
"winston-mongodb": "^5.0.7"
},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/config": "^0.0.38",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.34",
"@types/socket.io": "^2.1.13",
"@types/supertest": "^2.0.10",
"jest": "^26.6.3",
"supertest": "^6.1.3"
}
}