forked from hrla26-sdc-urbnb/bookingWidgetAndUnitInfo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.8 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
{
"name": "bookingWidgetAndUnitInfo",
"jest": {
"testEnvironment": "node",
"collectCoverage": true
},
"version": "1.0.0",
"description": "cloning AirBnB booking widget and unit description",
"main": "index.js",
"scripts": {
"test": "jest --forceExit --detectOpenHandles",
"start": "nodemon ./server/index.js",
"seed": "node ./db/seed/seedData.js",
"build": "webpack --display-error-details --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HouseTargaryan/bookingWidgetAndUnitInfo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/HouseTargaryan/bookingWidgetAndUnitInfo/issues"
},
"homepage": "https://github.com/HouseTargaryan/bookingWidgetAndUnitInfo#readme",
"devDependencies": {
"css-loader": "^2.1.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.10.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"style-loader": "^0.23.1",
"supertest": "^3.3.0"
},
"dependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"axios": "^0.18.0",
"babel-loader": "^8.0.4",
"babel-plugin-react-css-modules": "^5.0.0",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"date-fns": "^1.30.1",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"faker": "^4.1.0",
"mongoose": "^5.4.0",
"mysql": "^2.16.0",
"mysql2": "^1.6.4",
"nodemon": "^1.18.9",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"sequelize": "^4.42.0",
"webpack": "^4.28.1",
"webpack-cli": "^3.1.2"
}
}