-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.24 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
50
51
{
"name": "nodeexpress-ibmi",
"version": "2.0.0",
"private": false,
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon -L ./bin/www",
"debug": "DEBUG=powerweb* 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": 3333
}
},
"dependencies": {
"client-sessions": "^0.8.0",
"cookie-parser": "^1.4.4",
"debug": "^4.3.0",
"express": "^4.18.2",
"http-errors": "^2.0.0",
"idb-connector": "^1.2.13",
"idb-pconnector": "^1.0.8",
"itoolkit": "^0.1.6",
"lodash": "^4.17.21",
"morgan": "^1.9.1",
"pug": "^3.0.2"
},
"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",
"nodemon": "^2.0.20",
"prettier": "^2.0.4"
}
}