forked from TopBunkNYC/Booking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.4 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
{
"name": "booking",
"version": "1.0.0",
"description": "Booking Component",
"main": "index.js",
"scripts": {
"react-dev": "webpack -d --watch",
"react-prod": "webpack -p",
"server-dev": "nodemon server/index.js",
"init-db": "createdb topbunk && psql topbunk < database/postgresInit.sql",
"postinit-db": "node database/postgresSeed.js && psql topbunk < database/postgresAutoIncrementReset.sql",
"seed-db": "node database/postgresSeed.js",
"init-mongo-counter": "mongo < ./database/initAutoIncrement.js",
"start-pm2": "pm2 start ./server/index.js",
"list-pm2": "pm2 list",
"pm2-server": "pm2 show server",
"stop-pm2": "pm2 stop 0",
"test": "jest --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Staybnb/Booking.git"
},
"author": "louisotter",
"license": "ISC",
"bugs": {
"url": "https://github.com/Staybnb/Booking/issues"
},
"homepage": "https://github.com/Staybnb/Booking#readme",
"dependencies": {
"artillery": "^1.6.0-25",
"axios": "^0.18.0",
"bluebird": "^3.5.2",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"cssnano": "^4.1.7",
"express": "^4.16.4",
"faker": "^4.1.0",
"knex": "^0.15.2",
"moment": "^2.22.2",
"mongoose": "^5.3.10",
"mongoose-sequence": "^4.0.1",
"morgan": "^1.9.0",
"mysql": "^2.16.0",
"newrelic": "^4.11.0",
"nodemon": "^1.18.4",
"pg": "^7.6.1",
"pm2": "^3.2.2",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.4.0",
"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",
"sugarss": "^2.0.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",
"file-loader": "^2.0.0",
"isomorphic-style-loader": "^4.0.0",
"jest": "^23.6.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"
}
}