This repository was archived by the owner on Mar 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.48 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.48 KB
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
{
"name": "dustnet-api",
"description": "",
"version": "0.0.0",
"homepage": "",
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "Matthias Esterl",
"email": "me@madcity.at"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/"
},
"engines": {
"node": ">= 6.0.0",
"yarn": ">= 0.18.0"
},
"scripts": {
"test": "yarn run eslint && yarn run mocha",
"eslint": "eslint src/. test/. --config .eslintrc",
"start": "node src/",
"deploy": "pm2 deploy development",
"deploy-prod": "pm2 deploy production",
"mocha": "mocha test/ --recursive --exit"
},
"dependencies": {
"@feathersjs/authentication": "^2.1.2",
"@feathersjs/authentication-jwt": "^2.0.0",
"@feathersjs/authentication-local": "^1.1.0",
"@feathersjs/configuration": "^2.0.0",
"@feathersjs/errors": "^3.3.0",
"@feathersjs/express": "^1.2.0",
"@feathersjs/feathers": "^3.1.3",
"compression": "^1.7.2",
"cors": "^2.8.4",
"express-json-validator-middleware": "^1.2.1",
"feathers-authentication-hooks": "^0.3.0",
"feathers-hooks-common": "^4.8.0",
"feathers-permissions": "^0.2.1",
"feathers-sequelize": "^3.0.1",
"feathers-swagger": "^0.7.0",
"helmet": "^3.12.0",
"pg": "^7.4.1",
"sequelize": "^4.35.2",
"winston": "^2.4.1"
},
"devDependencies": {
"eslint": "^5.2.0",
"mocha": "^5.0.4",
"request": "^2.83.0",
"request-promise": "^4.2.2"
}
}