-
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.05 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.05 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": "library",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "set DEBUG=app,app:* & nodemon app.js",
"lint": "eslint app.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"bootstrap": "^4.3.1",
"chalk": "2.4.2",
"cookie-parser": "^1.4.4",
"debug": "4.1.1",
"ejs": "^2.7.1",
"express": "4.17.1",
"express-session": "^1.17.0",
"jquery": "^3.4.1",
"mongodb": "^3.3.3",
"morgan": "^1.9.1",
"mssql": "^5.1.0",
"nodemon": "^1.19.4",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"popper.js": "^1.16.0",
"pug": "^2.0.4",
"xml2js": "^0.4.22"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
"node_modules/**/node_modules"
],
"delay": "2500",
"env": {
"NODE_ENV": "development",
"PORT": "3000"
}
}
}