-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 2.68 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
{
"name": "booking",
"version": "1.0.0",
"description": "Booking Component",
"main": "index.js",
"scripts": {
"react-dev": "webpack -d --watch",
"server-dev": "nodemon server/index.js",
"start-prod": "cross-env NODE_ENV=development nodemon server/index.js",
"populate-mySQL": "mysql -u root -h booking.cksae9ebsoyz.us-east-2.rds.amazonaws.com -p < ./schema.sql",
"aws-connect": "ssh -i \"bookingModule.pem\" [email protected]",
"start-pm2": "pm2 start ./server/index.js",
"list-pm2": "pm2 list",
"pm2-server": "pm2 show server",
"stop-pm2": "pm2 stop 0",
"postgres": "pg_ctl -D /usr/local/var/postgres start",
"stop-postgres": "pg_ctl -D /usr/local/var/postgres stop",
"seed-postgres": "node ./dataSeed/dataSeedPostgres.js",
"redis": "redis-server",
"stop-redis": "redis-cli SHUTDOWN SAVE",
"abort-redis": "redis-cli SHUTDOWN NOSAVE",
"seed-redis": "node ./dataSeed/dataSeedRedis.js",
"mysql": "",
"stop-mysql": "",
"seed-mysql": "",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Staybnb/Booking.git"
},
"author": "Grant Diamond",
"license": "ISC",
"homepage": "https://github.com/Staybnb/Booking#readme",
"dependencies": {
"@newrelic/native-metrics": "^3.1.2",
"axios": "^0.18.0",
"bluebird": "^3.5.2",
"body-parser": "^1.18.3",
"cross-env": "^5.2.0",
"dependency-check": "^3.2.1",
"express": "^4.16.4",
"ioredis": "^4.2.0",
"knex": "^0.15.2",
"moment": "^2.22.2",
"morgan": "^1.9.0",
"mysql": "^2.16.0",
"newrelic": "^4.11.0",
"node-schedule": "^1.3.1",
"nodemon": "^1.18.4",
"pg": "^7.6.1",
"pm2": "^3.2.2",
"promise-mysql": "^3.3.1",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-datepicker": "^1.7.0",
"react-dates": "^18.1.1",
"react-dom": "^16.5.2",
"react-flexbox-grid": "^2.1.2",
"react-ratings-declarative": "^3.4.1",
"redis": "^2.8.0",
"redis-mass": "^0.4.0",
"redis-streams": "^1.1.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.11",
"cz-conventional-changelog": "^2.1.0",
"file-loader": "^2.0.0",
"node-sass": "^4.8.3",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"url-loader": "^1.1.2",
"webpack": "^4.22.0",
"webpack-cli": "^3.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}