-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.75 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
52
53
54
55
56
57
58
59
60
{
"name": "service-backend",
"description": "",
"version": "0.1.0",
"main": "src",
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^11.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"preinstall": "cd frontend/; npm install --unsafe-perm; npm run build; cd ..",
"postinstall": "cd nodered-local/; npm install --unsafe-perm; cd ..; ./bootstrap-seed.sh",
"test": "npm run eslint && NODE_ENV= npm run jest",
"eslint": "eslint src/. test/. --config .eslintrc.json",
"dev": "nodemon src/",
"start:system": "node src/",
"start:nodered": "cd nodered-local/; node index.js",
"start": "npm run start:system & npm run start:nodered",
"jest": "jest"
},
"dependencies": {
"@feathersjs/authentication": "^2.1.16",
"@feathersjs/authentication-jwt": "^2.0.10",
"@feathersjs/authentication-local": "^1.2.9",
"@feathersjs/configuration": "^2.0.6",
"@feathersjs/errors": "^3.3.6",
"@feathersjs/express": "^1.3.1",
"@feathersjs/feathers": "^3.3.1",
"@feathersjs/socketio": "^3.2.9",
"ajv": "^6.10.0",
"compression": "^1.7.4",
"connect-history-api-fallback": "^1.6.0",
"cors": "^2.8.5",
"feathers-authentication-hooks": "^0.3.1",
"feathers-hooks-common": "^4.20.7",
"feathers-nedb": "^4.0.1",
"feathers-swagger": "^1.1.0",
"glob": "^7.1.4",
"helmet": "^3.18.0",
"http-proxy-middleware": "^0.19.1",
"jsonata": "^1.6.5",
"lodash": "^4.17.15",
"nedb": "^1.8.0",
"passport-custom": "^1.0.5",
"serve-favicon": "^2.5.0",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"request": "^2.88.0",
"request-promise": "^4.2.4"
}
}