forked from Staybnb/Description
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.93 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
{
"name": "topbunk-listing-description",
"version": "1.0.0",
"description": "Airbnb Listing Clone - Description Component",
"main": "index.js",
"scripts": {
"react-dev": "webpack -d --watch",
"react-prod": "webpack -p",
"server-dev": "nodemon server/index.js",
"start": "node server/index.js",
"build-csv": "node ./database/build.js",
"seed-postgres": "psql topbunk < ./database/postgresSchema.sql",
"seed-mongo": "./database/mongoInit.sh",
"test": "jest ./spec/test.js",
"stress-test": "artillery run ./spec/stressTest.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TopBunkNYC/Description.git"
},
"author": "DHP",
"contributors": [
"MLJ"
],
"license": "ISC",
"devDependencies": {
"jest": "^23.6.0",
"jest-puppeteer": "^3.4.0",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"artillery": "^1.6.0-25",
"axios": "^0.18.0",
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"bluebird": "^3.5.3",
"body-parser": "^1.17.2",
"express": "^4.15.0",
"faker": "^4.1.0",
"file-loader": "^2.0.0",
"image-webpack-loader": "^4.4.0",
"json2csv": "^4.3.0",
"knex": "^0.15.2",
"mdbreact": "^4.8.2",
"module-example": "^1.0.0",
"mongoose": "^5.3.10",
"mongoose-sequence": "^4.0.1",
"morgan": "^1.9.1",
"mysql": "^2.13.0",
"newrelic": "^4.11.0",
"pg": "^7.6.1",
"puppeteer": "^1.9.0",
"react": "^15.4.2",
"react-collapse": "^4.0.3",
"react-dom": "^15.4.2",
"react-motion": "^0.5.2",
"react-slide-toggle": "^0.1.13",
"react-text-collapse": "^0.5.0",
"sequelize": "^4.41.1",
"webpack": "^2.2.1"
},
"bugs": {
"url": "https://github.com/TopBunkNYC/Description/issues"
},
"homepage": "https://github.com/TopBunkNYC/Description#readme",
"jest": {
"preset": "jest-puppeteer"
}
}