-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 2.1 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
{
"name": "werewolwes-assistant-api",
"version": "0.11.0",
"description": "Back end for the werewolves assistant",
"main": "app.js",
"scripts": {
"start": "npx nodemon --watch .env --watch . --ignore 'public/apidoc/' app.js",
"lint": "npx eslint src/ tests/ --ext .js --fix",
"doc": "npx apidoc -c ./config/apidoc -i src/routes/ -o public/apidoc/",
"start_sandbox": "forever start ./config/forever/sandbox.json",
"stop_sandbox": "forever stop werewolves-assistant-api-sandbox",
"start_production": "forever start ./config/forever/production.json",
"stop_production": "forever stop werewolves-assistant-api",
"update_version": "src/scripts/update-version.sh",
"migrate": "npx migrate-mongo up -f ./config/migrate-mongo/index.js",
"migrate_down": "npx migrate-mongo down -f ./config/migrate-mongo/index.js",
"test": "export NODE_ENV=test && npx mocha ./tests/units/index.js ./tests/e2e/index.js --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antoinezanardi/werewolwes-assistant-api.git"
},
"author": "Antoine ZANARDI",
"license": "ISC",
"bugs": {
"url": "https://github.com/antoinezanardi/werewolwes-assistant-api/issues"
},
"homepage": "https://github.com/antoinezanardi/werewolwes-assistant-api#readme",
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^7.25.0",
"mocha": "^8.2.1",
"nodemon": "^2.0.7"
},
"dependencies": {
"@sentry/node": "^6.3.5",
"apidoc": "^0.26.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"colors": "^1.4.0",
"cors": "^2.8.5",
"deepmerge": "^4.2.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.2.3",
"express-validator": "^6.10.1",
"jsonwebtoken": "^8.5.1",
"migrate-mongo": "^8.1.4",
"mongo-dot-notation": "^2.0.0",
"mongoose": "5.12.5",
"passport": "^0.4.1",
"passport-http": "^0.3.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"qs": "^6.9.6",
"requirejs": "^2.3.6",
"validator": "^13.6.0",
"xss": "^1.0.8"
}
}