-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.81 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
61
62
63
64
65
66
67
{
"name": "api-rbac",
"description": "API RBAC configuration and management interface",
"version": "0.0.0",
"homepage": "",
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "Brad",
"email": "[email protected]"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/"
},
"engines": {
"node": ">= 10.0.0",
"yarn": ">= 0.18.0"
},
"scripts": {
"postinstall": "yarn --cwd client install",
"start": "concurrently --kill-others \"nodemon src/\" \"yarn --cwd client start\"",
"client": "yarn --cwd client start",
"server": "node src/",
"build": "yarn --cwd client build",
"test": "yarn eslint && NODE_ENV= yarn mocha",
"eslint": "eslint src/. test/. --config .eslintrc.json",
"mocha": "mocha test/ --recursive --exit"
},
"dependencies": {
"@feathersjs/authentication": "^4.4.1",
"@feathersjs/authentication-client": "^4.5.1",
"@feathersjs/authentication-local": "^4.4.1",
"@feathersjs/authentication-oauth": "^4.4.1",
"@feathersjs/cli": "^4.2.5",
"@feathersjs/configuration": "^4.4.1",
"@feathersjs/errors": "^4.4.1",
"@feathersjs/express": "^4.4.1",
"@feathersjs/feathers": "^4.4.1",
"@feathersjs/socketio": "^4.4.1",
"axios": "^0.18.0",
"compression": "^1.7.3",
"cors": "^2.8.4",
"dotenv": "^6.1.0",
"feathers-hooks-common": "^4.19.4",
"feathers-sequelize": "^6.1.0",
"helmet": "^3.13.0",
"json-bigint": "^0.3.0",
"localStorage": "^1.0.4",
"mysql2": "^1.6.4",
"sequelize": "^4.38.0",
"serve-favicon": "^2.5.0",
"winston": "^3.0.0"
},
"devDependencies": {
"concurrently": "^4.1.0",
"eslint": "^5.6.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.6",
"request": "^2.88.0",
"request-promise": "^4.2.2"
}
}