-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.6 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
{
"name": "as-systems-design-capstone",
"version": "1.0.0",
"description": "service for booking tool/top nav header",
"main": "./server/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"convert-css": "sass --watch client/src/style.sass:client/src/style.css",
"mongostart": "nodemon server/mongodb/index.js",
"pgstart": "nodemon server/postgres/index.js",
"defaultstart": "nodemon server/index.js",
"react-dev": "webpack -d --watch",
"pgListingsSeed": "node --max-old-space-size=7076 dbhelpers/postgres/pgListingsSeed.js",
"pgBookingDatesSeed": "node --max-old-space-size=7076 dbhelpers/postgres/pgBookingDatesSeed.js",
"postgresBookingDatesCsv": "node --max-old-space-size=7076 dbhelpers/postgres/pgseed.js",
"postgresListingsCsv": "node --max-old-space-size=7076 dbhelpers/postgres/pgseed.js",
"mongoBookingDatesCsv": "node --max-old-space-size=7076 dbhelpers/mongodb/mongoBookingDatesSeed.js",
"mongoListingsCsv": "node --max-old-space-size=7076 dbhelpers/mongodb/mongoListingsSeed.js",
"mongoBookingDatesSeed": "mongoimport --db=awayhome --type=csv --collection=bookingdates --headerline --file=dbhelpers/mongodb/mongoBookingDates.csv --numInsertionWorkers 4",
"mongoListingsSeed": "mongoimport --db=awayhome --type=csv --collection=listings --headerline --file=dbhelpers/mongodb/mongoListings.csv --numInsertionWorkers 4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aaronsomo"
},
"author": "Aaron Southammavong",
"license": "ISC",
"bugs": {
"url": "https://github.com/aaronsomo"
},
"homepage": "https://github.com/aaronsomo",
"dependencies": {
"axios": "^0.19.0",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"css-loader": "^3.3.2",
"csv-writer": "^1.5.0",
"express": "^4.17.1",
"faker": "^4.1.0",
"mongoose": "^5.8.3",
"mongoose-sequence": "^5.2.2",
"morgan": "^1.9.1",
"mysql2": "^2.0.1",
"pg": "^7.15.1",
"pg-promise": "^10.3.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-inlinesvg": "^1.2.0",
"react-redux": "^7.1.3",
"react-star-ratings": "^2.3.0",
"redux": "^4.0.4",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"sequelize": "^5.21.3",
"style-loader": "^1.0.1",
"svg-inline-loader": "^0.8.0"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"babel-loader": "^8.0.6",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
}
}