-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·61 lines (61 loc) · 1.64 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
{
"name": "summary1.0",
"version": "",
"description": "Summary module for airbnb clone",
"author": "Keshav Mandayam",
"license": "ISC",
"engines": {
"node": "7.6-alpine"
},
"scripts": {
"gen": "node ./server/seed.js",
"start": "node ./server/server.js",
"builddev": "webpack --watch",
"build": "webpack --mode production --devtool false",
"test": "jest --coverage --"
},
"dependencies": {
"bluebird": "^3.5.2",
"body-parser": "^1.18.3",
"es6-promise": "^4.2.5",
"express": "^4.16.4",
"faker": "^4.1.0",
"isomorphic-fetch": "^2.2.1",
"mysql2": "^1.6.1",
"node-fetch": "^2.2.0",
"path": "^0.12.7",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-modal": "^3.6.1",
"react-responsive-modal": "^3.5.0",
"sequelize": "^4.41.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"nodemon": "^1.18.4",
"prettier": "^1.14.3",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.22.0",
"webpack-cli": "^3.1.2"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>tests/setupTests.js"
}
}