forked from Staybnb/Neighborhood
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.27 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
{
"name": "neighborhood",
"version": "1.0.0",
"description": "This is the 'Neighborhood' module of the Top Bunk application.",
"main": "bundle.js",
"scripts": {
"build": "webpack",
"start": "node ./server/babelServer.js",
"seed": "node ./server/models/dummyData/populate.js",
"load": "node ./server/models/dummyData/listingGeneration.js",
"react-dev": "webpack -d --watch",
"react-prod": "webpack -p",
"start-dev": "nodemon ./server/babelServer.js",
"test": "jest",
"start-pm2": "pm2 start ./server/server.js",
"list-pm2": "pm2 list",
"show-server-pm2": "pm2 show server",
"stop-pm2": "pm2 stop 0",
"go-seed": "go run ./server/models/dummyData/csv-generator-go/csv-generator.go"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TopBunkNYC/Neighborhood"
},
"author": "Kai Chen",
"license": "MIT",
"bugs": {
"url": "https://github.com/TopBunkNYC/Neighborhood"
},
"homepage": "https://github.com/TopBunkNYC/Neighborhood",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"jest": "^22.3.0",
"morgan": "^1.9.0",
"parallelshell": "^3.0.1",
"puppeteer": "^1.9.0",
"random-points-on-polygon": "0.0.4",
"turf": "^3.0.14"
},
"dependencies": {
"@babel/preset-react": "^7.0.0",
"@turf/distance": "^6.0.1",
"@turf/turf": "^5.1.6",
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"bluebird": "^3.5.2",
"body-parser": "^1.18.3",
"csv-write-stream": "^2.0.0",
"db-streamer": "^1.2.1",
"express": "^4.16.4",
"faker": "^4.1.0",
"json2csv": "^4.3.0",
"jsonexport": "^2.3.0",
"lorem-ipsum": "^1.0.6",
"newrelic": "^4.11.0",
"npm-run-series": "^1.0.1",
"path": "^0.12.7",
"pg": "^7.6.1",
"pg-copy-streams": "^1.2.0",
"pg-hstore": "^2.3.2",
"pg-query-stream": "^1.1.2",
"pm2": "^3.2.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-google-maps": "^9.4.5",
"redis": "^2.8.0",
"regenerator-runtime": "^0.13.1",
"sequelize": "^4.41.0",
"webpack": "^3.11.0",
"webpack-cli": "^3.1.2"
}
}