forked from CESARBR/knot-gateway-webui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 991 Bytes
/
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
{
"name": "gateway",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "CONFIG_FILE=./app/config/gatewayConfig.json KEYS_FILE=./app/config/keys.json DOTENV_FILE=./app/config/.env node server.js",
"lint": "eslint ."
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.2",
"connect": "^3.5.0",
"dbus-native": "^0.2.0",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"express-jwt": "^5.1.0",
"jsonwebtoken": "^7.1.9",
"mongoose": "^4.8.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"request": "^2.79.0"
},
"devDependencies": {
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"pre-commit": "^1.1.3"
},
"pre-commit": [
"lint"
]
}