-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
95 lines (95 loc) · 2.45 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "cognicity-server",
"version": "3.1.2",
"description": "Data Server for CogniCity",
"main": "dist",
"engines": {
"node": ">=8.1.4"
},
"scripts": {
"dev": "nodemon -w src --exec \"babel-node src\"",
"build": "babel src -s -D -d dist",
"start": "node dist",
"prestart": "npm run -s build",
"mocha": "nyc mocha --exit --require babel-core/register src/test/",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint src",
"test": "npm run lint & npm run mocha",
"jsdoc": "./node_modules/jsdoc/jsdoc.js -r -R README.md -d ./jsdoc/ src/"
},
"nyc": {
"sourceMap": false,
"instrument": false,
"exclude": [
"**/test/**",
"build",
"node_modules"
]
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
},
"env": {
"node": true,
"mocha": true
},
"rules": {
"no-console": 0,
"no-unused-vars": 1
}
},
"repository": "https://github.com/urbanriskmap/cognicity-server",
"issues": "https://github.com/urbanriskmap/cognicity-server/issues",
"author": "Tomas Holderness et al., MIT Urban Risk Lab",
"license": "GPL-3.0",
"dependencies": {
"api-error-handler": "^1.0.0",
"apicache": "0.8.4",
"aws-sdk": "^2.7.24",
"axios": "^0.18.0",
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"celebrate": "^6.0.1",
"compression": "^1.6.2",
"cors": "^2.8.3",
"dbgeo": "^1.1.0",
"dotenv": "^6.0.0",
"express": "^4.15.2",
"express-jwt": "^5.3.0",
"joi": "^13.4.0",
"joi-date-extensions": "^1.0.2",
"jsonwebtoken": "^8.2.2",
"jwks-rsa": "^1.1.1",
"jwt-decode": "^2.2.0",
"moment": "^2.22.2",
"moment-timezone": "^0.5.13",
"morgan": "^1.8.1",
"node-pre-gyp": "^0.10.0",
"pg-promise": "^8.4.4",
"response-time": "^2.3.2",
"shortid": "^2.2.8",
"winston": "^2.3.1",
"xmlbuilder": "^10.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.24.1",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"estraverse": "^4.2.0",
"esutils": "^2.0.2",
"jsdoc": "^3.4.3",
"mocha": "^5.2.0",
"nodemon": "^1.11.0",
"nyc": "^12.0.2",
"supertest": "^3.0.0",
"unit.js": "^2.0.0"
}
}