-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
80 lines (80 loc) · 2.64 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
78
79
80
{
"name": "carbonfootprint",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "./bin/www",
"watch:server": "nodemon --ignore 'client/*' ./bin/www",
"lint:test": "eslint .",
"lint:fix": "eslint --fix .",
"backendTest": "mocha --timeout 10000 test/*",
"clientTest": "npm test --prefix client",
"test": "npm run backendTest && npm run clientTest && npm run lint:test",
"all": "cd api/v1/db_scripts && npm run all && cd ../../..",
"flights": "cd api/v1/db_scripts && npm run flights && cd ../../..",
"electricity": "cd api/v1/db_scripts && npm run electricity && cd ../../..",
"vehicle": "cd api/v1/db_scripts && npm run vehicle && cd ../../..",
"trains": "cd api/v1/db_scripts && npm run trains && cd ../../..",
"trees": "cd api/v1/db_scripts && npm run trees && cd ../../..",
"poultry": "cd api/v1/db_scripts && npm run poultry && cd ../../..",
"appliance": "cd api/v1/db_scripts && npm run appliance && cd ../../..",
"agriculture": "cd api/v1/db_scripts && npm run agriculture && cd ../../..",
"food": "cd api/v1/db_scripts && npm run food && cd ../../..",
"land": "cd api/v1/db_scripts && npm run land && cd ../../..",
"sector": "cd api/v1/db_scripts && npm run sector && cd ../../.."
},
"dependencies": {
"@sentry/node": "^5.16.1",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"cookie-parser": "~1.4.3",
"cors": "^2.8.5",
"cubic-spline": "^1.0.4",
"debug": "~2.6.0",
"dotenv": "^4.0.0",
"ejs": "^2.5.6",
"express": "^4.14.1",
"express-jwt": "^5.3.0",
"formidable": "^1.1.1",
"helmet": "^3.12.0",
"httpsnippet": "^1.16.5",
"jwks-rsa": "^1.2.0",
"lodash": "^4.17.4",
"module-alias": "^2.1.0",
"mongoose": "^5.9.2",
"morgan": "^1.7.0",
"multer": "^1.3.1",
"node-geocoder": "^3.22.0",
"redis": "^2.8.0",
"serve-favicon": "^2.5.0",
"swagger-jsdoc": "^3.2.7",
"swagger-ui-express": "^4.0.2",
"topojson-client": "^3.0.0",
"uuid": "^3.1.0",
"winston": "^2.4.1",
"winston-sentry": "^0.2.1"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^2.0.1",
"css-loader": "^0.25.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.18.0",
"gitbook-cli": "^2.3.1",
"mocha": "^2.4.5",
"nodemon": "^1.11.0",
"react-hot-loader": "^1.3.1",
"serve": "^6.0.0",
"should": "^11.2.1",
"sinon": "^7.3.2",
"style-loader": "^0.13.1",
"supertest": "^3.0.0"
},
"_moduleAliases": {
"@root": ".",
"@framework": "./framework",
"@raw_data": "./raw_data"
}
}