-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.62 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.62 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
{
"name": "mongoexpressdemo",
"version": "0.1.0",
"description": "A place to store all my interview application",
"main": "index.js",
"scripts": {
"start": "ts-node bin/www",
"start-dev": "NODE_ENV=dev ts-node bin/www",
"debug": "ts-node --inspect bin/www",
"nodemon": "NODE_ENV=test nodemon bin/www",
"test": "NODE_ENV=test ts-mocha",
"lint": "eslint ."
},
"author": "matmath",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"boom": "^7.3.0",
"bunyan": "^1.8.15",
"connect-redis": "^3.3.3",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-session": "^1.17.1",
"joi": "^17.4.0",
"mongodb": "^3.6.5",
"passport": "^0.4.1",
"passport-google-oauth2": "^0.2.0",
"passport-local": "^1.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"devDependencies": {
"@types/bunyan": "^1.8.6",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/expect": "^24.3.0",
"@types/express": "^4.17.11",
"@types/express-session": "^1.17.3",
"@types/joi": "^17.2.3",
"@types/mocha": "^8.2.2",
"@types/mongodb": "^3.6.10",
"@types/node": "^14.14.35",
"@types/passport": "^1.0.6",
"@types/passport-google-oauth2": "^0.1.3",
"@types/passport-local": "^1.0.33",
"dtrace-provider": "^0.8.8",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.1.0",
"expect.js": "^0.3.1",
"mocha": "^8.3.2",
"request": "^2.88.2",
"ts-mocha": "^8.0.0"
}
}