-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.23 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
72
73
74
75
76
77
78
79
{
"name": "react-js-boilerplate",
"version": "1.0.0",
"description": "React js boilerplate",
"main": "index.js",
"scripts": {
"build:watch": "webpack -w",
"start:dev-server": "node server.js",
"start:dev": "concurrently \"yarn build:watch\" \"yarn start:dev-server\"",
"json-server": "json-server --watch test-db.json --port 3001",
"lint": "node_modules/.bin/eslint src --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn flow"
}
},
"keywords": [
"React",
"js"
],
"author": "Amr Labib",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-plugin-flow-react-proptypes": "^24.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"compression-webpack-plugin": "^1.1.11",
"copy-webpack-plugin": "^4.5.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "7.4.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"flow": "^0.2.3",
"flow-bin": "^0.71.0",
"husky": "^1.0.0-rc.2",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^2.1.3",
"svg-sprite-loader": "^3.7.3",
"webpack": "^4.4.1",
"webpack-cli": "^2.0.13"
},
"dependencies": {
"axios": "^0.18.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-1": "^6.24.1",
"bootstrap": "^4.1.0",
"compression": "^1.7.2",
"concurrently": "^3.5.1",
"css-loader": "^0.28.11",
"express": "^4.16.3",
"file-loader": "^1.1.11",
"json-server": "^0.12.2",
"node-sass": "^4.8.3",
"prop-types": "^15.6.1",
"react": "^16.3.0",
"react-css-modules": "^4.7.2",
"react-dom": "^16.3.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.7",
"serve-static": "^1.13.2",
"style-loader": "^0.20.3",
"svgo": "^1.0.5",
"svgo-loader": "^2.1.0",
"uglifyjs-webpack-plugin": "^1.2.4",
"url-loader": "^1.0.1"
}
}