-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.83 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
{
"name": "neighborhood",
"version": "1.0.0",
"description": "This is the 'Neighborhood' module of the Staybnb application.",
"main": "bundle.js",
"scripts": {
"build": "webpack",
"start": "node ./server/server.js",
"seed": "node ./server/models/loadData.js",
"react-dev": "webpack -d --watch",
"react-prod": "webpack -p",
"start-dev": "nodemon ./server/server.js",
"test": "jest",
"connect": "ssh -i \"neighborhood-ec2-keypair.pem\" ubuntu@ec2-3-16-89-66.us-east-2.compute.amazonaws.com",
"start-pm2": "pm2 start ./server/server.js",
"list-pm2": "pm2 list",
"show-server-pm2": "pm2 show server",
"stop-pm2": "pm2 stop 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Staybnb/Neighborhood.git"
},
"author": "David Weinzimmer",
"license": "MIT",
"bugs": {
"url": "https://github.com/Staybnb/Neighborhood/issues"
},
"homepage": "https://github.com/Staybnb/Neighborhood#readme",
"devDependencies": {
"css-loader": "^1.0.1",
"jest": "^24.8.0",
"morgan": "^1.9.0",
"puppeteer": "^1.18.0",
"random-points-on-polygon": "0.0.4",
"style-loader": "^0.23.1",
"turf": "^3.0.14"
},
"dependencies": {
"@turf/distance": "^6.0.1",
"@turf/turf": "^5.1.6",
"axios": "^0.19.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bluebird": "^3.5.2",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"google-map-react": "^1.1.1",
"path": "^0.12.7",
"pg": "^7.5.0",
"pm2": "^3.5.1",
"react": "^16.2.0",
"react-bootstrap-table-next": "^1.4.1",
"react-dom": "^16.2.0",
"react-pure-render": "^1.0.2",
"sequelize": "^6.0.0",
"webpack": "^3.11.0",
"webpack-cli": "^3.1.2"
}
}