This repository was archived by the owner on Oct 26, 2023. 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
56 lines (56 loc) · 1.33 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.33 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
{
"name": "feathers-mongoose-patch-issue",
"description": "",
"version": "0.0.0",
"homepage": "",
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "TBraner",
"email": "t.braner@triggerco.de"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^10.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"init-db": "node ./scripts/init-mongo.js",
"test": "npm run eslint && npm run mocha",
"test:dev": "npm run eslint && npm run mocha -- --watch",
"eslint": "eslint src/. test/. --config .eslintrc.json",
"dev": "nodemon src/",
"start": "node src/",
"mocha": "mocha test/ --recursive --exit"
},
"dependencies": {
"@feathersjs/configuration": "^4.3.4",
"@feathersjs/errors": "^4.3.4",
"@feathersjs/express": "^4.3.4",
"@feathersjs/feathers": "^4.3.4",
"compression": "^1.7.4",
"cors": "^2.8.5",
"feathers-hooks-common": "^4.20.7",
"feathers-memory": "^4.0.1",
"feathers-mongoose": "^8.0.3",
"helmet": "^3.21.1",
"mongodb-core": "^3.2.7",
"mongoose": "^5.7.3",
"serve-favicon": "^2.5.0",
"winston": "^3.2.1"
},
"devDependencies": {
"axios": "^0.21.1",
"eslint": "^6.5.1",
"mocha": "^6.2.1",
"nodemon": "^1.19.3"
}
}