forked from stalniy/casl-feathersjs-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.47 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": "blog",
"description": "",
"version": "0.0.0",
"homepage": "",
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "Sergii Stotskyi",
"email": "sergiy.stotskiy@gmail.com"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"test": "npm run eslint && npm run mocha",
"eslint": "eslint src/. test/. --config .eslintrc.json",
"start": "node src/",
"dev": "nodemon src/",
"mocha": "mocha test/ --recursive"
},
"dependencies": {
"@casl/ability": "^2.0.0-alpha.ade5be4a",
"@casl/mongoose": "2.0.0-alpha.ade5be4a",
"@feathersjs/authentication": "^2.1.3",
"@feathersjs/authentication-jwt": "^2.0.0",
"@feathersjs/authentication-local": "^1.1.0",
"@feathersjs/configuration": "^1.0.2",
"@feathersjs/errors": "^3.3.0",
"@feathersjs/express": "^1.2.0",
"@feathersjs/feathers": "^3.1.3",
"@feathersjs/socketio": "^3.2.0",
"body-parser": "^1.17.2",
"compression": "^1.7.0",
"cors": "^2.8.4",
"feathers-hooks-common": "^4.10.0",
"feathers-mongoose": "^6.1.0",
"helmet": "^3.8.0",
"mongoose": "^4.11.4",
"serve-favicon": "^2.4.3",
"winston": "^2.3.1",
"ws": "^3.0.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"mocha": "^3.5.3",
"nodemon": "^1.17.2",
"request": "^2.85.0",
"request-promise": "^4.2.2"
}
}