forked from AndyYouens/NodeExpress-IBMi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.18 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
48
49
{
"name": "powerweb",
"version": "1.3.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon -L ./bin/www",
"debug": "DEBUG=formaserve* nodemon -L ./bin/www",
"eslint": "eslint .",
"security-check": "nsp check"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
".git",
"node_modules/**/node_modules"
],
"delay": "2500",
"env": {
"NODE_ENV": "development",
"PORT": 4002
}
},
"dependencies": {
"client-sessions": "^0.8.0",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"idb-pconnector": "^1.0.8",
"itoolkit": "^0.1.6",
"morgan": "~1.9.1",
"pug": "^2.0.4"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-node": "^4.0.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"nsp": "^3.2.1",
"prettier": "^2.0.4"
}
}