-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 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
46
47
{
"name": "elibrary",
"version": "1.0.0",
"description": "node + express library project",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "set DEBUG=app,app:* & nodemon app.js",
"lint": "eslint app.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"bootstrap": "^4.1.1",
"chalk": "^2.4.1",
"cookie-parser": "^1.4.3",
"debug": "^3.1.0",
"ejs": "^2.6.1",
"express": "^4.16.3",
"express-session": "^1.15.6",
"jquery": "^3.3.1",
"morgan": "^1.9.0",
"mssql": "^4.1.0",
"nodemon": "^1.17.4",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
"node_modules/**/node_modules"
],
"delay": "2500",
"env": {
"NODE_ENV": "development",
"PORT": 4000
}
}
}