-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.63 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.63 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "db44",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node ./dist/server",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"test": "jest --config jest.config.js",
"posttest": "npm run check"
},
"dependencies": {
"@types/body-parser": "^1.17.1",
"@types/connect-flash": "0.0.35",
"@types/cookie-parser": "^1.4.2",
"@types/errorhandler": "0.0.32",
"@types/express": "^4.17.2",
"@types/express-session": "^1.15.16",
"@types/faker": "^4.1.8",
"@types/jest": "^24.0.25",
"@types/method-override": "0.0.31",
"@types/mongodb": "^3.3.14",
"@types/mongodb-memory-server": "^2.3.0",
"@types/morgan": "^1.7.37",
"@types/supertest": "^2.0.8",
"connect-flash": "^0.1.1",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"express": "~4.16.1",
"express-session": "^1.17.0",
"faker": "^4.1.0",
"gts": "^1.1.2",
"http-errors": "~1.6.3",
"install": "^0.13.0",
"jest": "^24.9.0",
"method-override": "^3.0.0",
"mongodb": "^3.4.1",
"mongodb-memory-server": "^6.2.0",
"morgan": "~1.9.1",
"npm": ">=6.13.4",
"pug": "^2.0.4",
"supertest": "^4.0.2",
"ts-jest": "^24.2.0",
"typescript": "^3.7.4"
},
"resolutions": {
"https-proxy-agent": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/sfaigan/db44.git"
},
"devDependencies": {
"@types/node": "^10.17.13",
"nodemon": "^1.19.4",
"ts-node": "^8.5.4"
},
"compilerOptions": {
"resolveJsonModule": true
}
}