This repository has been archived by the owner on Dec 17, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·55 lines (55 loc) · 1.73 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
{
"name": "react-universal-boilerplate",
"version": "1.0.0",
"main": "webpack.config.js",
"scripts": {
"build": "NODE_ENV=production webpack --progress --mode production --devtool source-map",
"start": "npm-run-all --parallel server client",
"server": "babel-watch ./src/server.jsx",
"client": "webpack --watch --progress --mode development",
"lint": "eslint --ext .jsx --ext .js ./src ./test ./webpack.config.js"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"prop-types": "^15.6.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-helmet": "^5.2.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-waypoint": "^8.0.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.0.2",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.26.0",
"babel-watch": "^2.0.7",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.12.0",
"eslint-config-fortech-react": "^1.0.2",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"express": "^4.16.3",
"friendly-errors-webpack-plugin": "^1.6.1",
"husky": "^0.14.3",
"jest": "^21.2.1",
"npm-run-all": "^4.1.3",
"webpack": "^4.15.0",
"webpack-bundle-analyzer": "^2.9.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
},
"license": "MIT"
}