-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.2 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
{
"name": "nyc_building_monitor_api",
"version": "1.0.0",
"description": "A NYC building monitor to hold landlords and city departments accountable through the data analysis of building violations, 311 calls, sales, and permits across all five boroughs.",
"main": "server/buildingmonitor_server.js",
"scripts": {
"nodemon": "nodemon server/nyc_data_server.js",
"start": "pm2 start server/nyc_data_server.js",
"test": "NODE_ENV=test jest --watch --forceExit",
"babel_server": "babel server --out-dir build/server"
},
"author": "",
"license": "GPL-3.0",
"dependencies": {
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"jest": "^23.4.1",
"nock": "^9.4.2",
"nodemon": "^1.17.5",
"sequelize": "^4.38.0",
"sqlite": "^2.9.2",
"sqlite3": "^4.0.2",
"webpack": "3.8.1"
},
"devDependencies": {
"axios": "^0.18.0",
"supertest": "^3.1.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8"
}
}