forked from catligad/booking-microservice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.23 KB
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": "bookingairbnc",
"version": "1.0.0",
"description": "Full stack booking module, potentially to be used for the group project AirBnC",
"author": "Catherine Ligad",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/airBnC/booking-module.git"
},
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"deploy": "npm install && npm run mysqlStart && npm run build && npsm start",
"start": "node server/index.js",
"build": "webpack --mode production",
"watch": "webpack -d --watch",
"test": "jest",
"update": "jest --updateSnapshot",
"coverage": "jest --coverage",
"mysqlStart": "mysql -u root < database/schema.sql && mysql -u root < database/populateUsers.sql && mysql -u root < database/populateUserListings.sql && mysql -u root < database/populateOccupiedDates.sql"
},
"dependencies": {
"axios": "^0.18.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"moment": "^2.22.2",
"mysql": "^2.15.0",
"prop-types": "^15.6.1",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-moment-proptypes": "^1.5.0",
"react-stars": "^2.2.5",
"styled-components": "^3.3.2",
"webpack": "^4.10.2",
"webpack-cli": "^2.1.4"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.1",
"babel-plugin-styled-components": "^1.5.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"file-loader": "^1.1.11",
"jest": "^23.1.0",
"jest-cli": "^23.1.0",
"jest-styled-components": "^5.0.1",
"nodemon": "^1.17.5",
"react-test-renderer": "^16.4.0",
"sinon": "^6.0.0"
},
"bugs": {
"url": "https://github.com/airBnC/booking-module/issues"
},
"homepage": "https://github.com/airBnC/booking-module#readme",
"main": "assetsTransformer.js",
"keywords": []
}