-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.82 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
{
"name": "america-scores-backend",
"version": "0.2.1",
"description": "The backend for the America SCORES data collection app.",
"main": "index.js",
"scripts": {
"build-test": "gulp seed && npm run coverage",
"test": "gulp test",
"eslint": "gulp eslint",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha $(find test -name '*.js') -- -R spec",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"seed": "gulp seed",
"dbseed": "gulp dbSeed",
"start": "pm2 start app.js -n amscores_backend",
"debug": "pm2 start app.js -n amscores_backend_debug --node-args=\"--debug=7000\"",
"stop": "if [[ ! -z $(pm2 list | grep amscores_backend) ]]; then pm2 delete amscores_backend; fi"
},
"repository": {
"type": "git",
"url": "https://github.com/CS4500-AmericaSCOfRES/america-scores-backend"
},
"author": "",
"license": "ISC",
"apidoc": {
"title": "America SCORES Boston API",
"url": "http://52.54.56.68/api"
},
"dependencies": {
"auth0": "^2.5.0",
"auth0-api-jwt-rsa-validation": "0.0.1",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"cookie-parser": "~1.4.3",
"debug": "~2.2.0",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"express-jwt": "^5.3.0",
"fast-csv": "^2.4.0",
"jwks-rsa": "^1.2.1",
"morgan": "~1.7.0",
"mysql": "^2.11.1",
"net": "^1.0.2"
},
"devDependencies": {
"auto-parse": "^1.3.0",
"apidoc": "^0.17.5",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"eslint": "^3.8.1",
"eslint-config-google": "^0.7.0",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-mocha": "^3.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"sinon": "^1.17.6",
"string-format": "^0.5.0",
"supertest": "^2.0.1"
}
}