-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.54 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": "nyc-factfinder-api",
"version": "2.0.1",
"scripts": {
"start": "node ./bin/www",
"dev": "NODE_ENV=development nodemon ./bin/www",
"lint": "./node_modules/.bin/eslint **/*.js",
"test": "NODE_ENV=test node ./node_modules/mocha/bin/mocha ./test/**/*.js --exit",
"migrate": "node ./bin/migrate",
"refresh": "node ./bin/refresh"
},
"pre-commit": [
"test"
],
"license": "ISC",
"dependencies": {
"apicache": "^1.2.3",
"axios": "^1.4.0",
"body-parser": "^1.18.3",
"compression": "1.7.3",
"cors": "^2.8.5",
"cwait": "1.1.1",
"d3": "^4.13.0",
"d3-collection": "^1.0.4",
"debug": "^3.1.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"geojson-validation": "^0.2.1",
"hot-formula-parser": "^3.0.2",
"lodash": "^4.17.11",
"mathjs": "6.0.2",
"mockgoose": "^7.3.5",
"mongoose": "^5.2.4",
"mongoose-plugin-autoinc": "^1.1.9",
"morgan": "^1.9.1",
"node-pg-migrate": "3.16.0",
"numeral": "^2.0.6",
"pg-promise": "^11.4.3",
"sha1": "^1.1.1",
"slug": "^0.9.2",
"underscore": "^1.9.1"
},
"engines": {
"node": "20.x"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"chai-things": "^0.2.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.12.0",
"expect": "22.4.0",
"glob": "^7.1.2",
"mocha": "^5.2.0",
"nodemon": "^2.0.19",
"prettyjson": "1.2.1",
"should": "13.2.1",
"supertest": "3.1.0"
}
}