This repository has been archived by the owner on Jul 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.04 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
68
69
70
71
72
73
74
75
76
77
{
"name": "adopteitor-feathers",
"version": "1.0.0",
"description": "",
"main": "src",
"repository": "https://github.com/adopteitor/adopteitor-api",
"scripts": {
"start": "node src/",
"dev": "DEBUG=* nodemon src/",
"test": "npm run lint && npm run coverage",
"coverage": "npm run clean && NODE_ENV=test istanbul cover node_modules/mocha/bin/_mocha -- test/ --recursive --exit",
"clean": "shx rm -rf test/data/",
"lint": "eslint src/. test/. --config .eslintrc.json --fix",
"mocha": "npm run clean && mocha test/ --recursive --exit"
},
"config": {
"ghooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"keywords": [
"feathers"
],
"author": "adopteitor",
"license": "MIT",
"directories": {
"lib": "src",
"test": "test/"
},
"engines": {
"node": "^9.0.0",
"npm": ">= 3.0.0"
},
"dependencies": {
"@feathersjs/authentication": "^2.1.7",
"@feathersjs/authentication-jwt": "^2.0.1",
"@feathersjs/authentication-local": "^1.2.1",
"@feathersjs/configuration": "^1.0.2",
"@feathersjs/errors": "^3.3.0",
"@feathersjs/express": "^1.2.3",
"@feathersjs/feathers": "^3.1.7",
"compression": "^1.7.2",
"cors": "^2.8.4",
"feathers-hooks-common": "^4.14.0",
"feathers-mongoose": "^6.1.2",
"feathers-swagger": "^0.7.1",
"helmet": "^3.12.1",
"mongoose": "^5.2.0",
"mongoose-to-swagger": "0.0.4",
"require-directory": "^2.1.1",
"serve-favicon": "^2.5.0",
"winston": "^3.0.0"
},
"devDependencies": {
"babel-eslint": "^8.2.5",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"ghooks": "^2.0.4",
"istanbul": "^1.1.0-alpha.1",
"lint-staged": "^7.2.0",
"mocha": "^5.2.0",
"nodemon": "^1.17.5",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"shx": "^0.3.1"
}
}