This repository has been archived by the owner on Oct 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
69 lines (69 loc) · 1.71 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
{
"name": "gamification",
"description": "A reusable microservice for gamification.",
"version": "0.0.0",
"homepage": "",
"main": "src",
"keywords": [
"feathers"
],
"license": "MIT",
"author": {
"name": "Frederike Ramin",
"email": "[email protected]"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/"
},
"engines": {
"node": "^8.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"test": "npm run eslint && npm run coverage",
"eslint": "eslint src/. test/. --config .eslintrc.json",
"start": "node src/",
"debug-linux": "node $NODE_DEBUG_OPTION src/",
"debug-windows": "node %NODE_DEBUG_OPTION% src/",
"mocha": "cross-env NODE_ENV=test mocha test/ --recursive --exit --timeout 30000",
"coverage": "cross-env NODE_ENV=test nyc mocha test/ --recursive --exit --timeout 30000",
"dev": "nodemon npm start"
},
"nodemonConfig": {
"ignore": [
"test/*",
"docs/*"
]
},
"dependencies": {
"@feathersjs/configuration": "^2.0.4",
"@feathersjs/errors": "^3.3.0",
"@feathersjs/express": "^1.2.2",
"@feathersjs/feathers": "^3.1.5",
"amqplib": "^0.5.2",
"compression": "^1.7.2",
"cors": "^2.8.4",
"feathers-mongoose": "^7.0.0",
"helmet": "^3.12.1",
"js-yaml": "^3.11.0",
"mongoose": "^5.1.3",
"serve-favicon": "^2.5.0",
"swagger-ui-express": "^4.0.1",
"winston": "^3.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"cross-env": "^5.2.0",
"eslint": "^6.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nodemon": "^1.17.5",
"nyc": "^13.1.0",
"request": "^2.87.0",
"request-promise": "^4.2.2"
}
}