-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.1 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
{
"name": "node",
"version": "1.0.0",
"description": "",
"main": "script.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "set DEBUG=app:* & nodemon script.js",
"lint": "eslint script.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"bootstrap": "4.5.2",
"chalk": "4.1.0",
"cookie-parser": "^1.4.5",
"debug": "4.1.1",
"ejs": "^3.1.3",
"express": "4.17.1",
"express-session": "^1.17.1",
"fs": "0.0.1-security",
"jquery": "3.5.1",
"jsdom": "^16.4.0",
"mongodb": "^3.6.0",
"morgan": "1.10.0",
"multer": "^1.4.2",
"multer-gridfs-storage": "^4.2.0",
"nodemon": "^2.0.4",
"passport": "^0.4.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"eslint": "^es7.6.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
"node_modules/**/node_modules"
],
"delay": "2500",
"env": {
"NODE_ENV": "development",
"PORT": 4000
}
}
}