-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.46 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "react-firenze-boilerplate",
"version": "1.0.0",
"description": "A react boilerplate that gives more control to the developer",
"main": "index.js",
"author": "Gabriele Cimato <[email protected]>",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test"
}
},
"lint-staged": {
"**/*.{js,jsx}": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config ./config/webpack.config.js",
"build:all": "npm run build && npm run build:server",
"build:dev": "cross-env webpack --config ./config/webpack.config.js -d",
"build:server": "cross-env NODE_ENV=server webpack --config ./config/webpack.config.js",
"dev": "webpack-dev-server --config ./config/webpack.config.js",
"lint": "eslint --fix ./src/**/*.{js,jsx} ./src/**/**/*.{js,jsx} ./server/**/*.js",
"prettier": "prettier --write ./src/**/*.{js,jsx} ./src/**/**/*.{js,jsx} ./server/**/*.js",
"format": "npm run prettier && npm run lint",
"postinstall": "npm run build && npm run build:server",
"start": "cross-env NODE_ENV=server node dist/server.js",
"stats": "cross-env NODE_ENV=production webpack --profile --json > stats.json --config ./config/webpack.config.js",
"test": "jest"
},
"dependencies": {
"@babel/cli": "^7.0.0-beta.40",
"@babel/core": "^7.0.0-beta.40",
"@babel/plugin-syntax-dynamic-import": "^7.0.0-beta.42",
"@babel/preset-env": "^7.0.0-beta.40",
"@babel/preset-react": "^7.0.0-beta.40",
"@babel/preset-stage-1": "^7.0.0-beta.40",
"@babel/register": "^7.0.0-beta.40",
"@react-firenze/react-loadable": "^5.3.2",
"babel-loader": "^8.0.0-beta.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"clean-webpack-plugin": "^0.1.17",
"compression": "^1.7.1",
"cross-env": "^5.1.3",
"dotenv": "^4.0.0",
"eslint-plugin-react": "^7.5.1",
"express": "^4.16.2",
"file-loader": "^0.11.2",
"friendly-errors-webpack-plugin": "^1.6.1",
"glamor": "^2.20.40",
"glamorous": "^4.11.4",
"html-webpack-harddisk-plugin": "^0.1.0",
"html-webpack-plugin": "^2.30.1",
"image-webpack-loader": "^3.6.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.4",
"nyan-progress-webpack-plugin": "^1.2.0",
"open-browser-webpack-plugin": "0.0.5",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-config": "^1.0.0-beta.4",
"react-router-dom": "^4.2.2",
"react-svg-loader": "^1.1.1",
"redux": "^3.7.2",
"redux-slim-async": "^1.3.1",
"uglifyjs-webpack-plugin": "^1.2.2",
"url-loader": "^0.5.9",
"webpack": "^3.11.0",
"webpack-merge": "^4.1.1",
"webpack-node-externals": "^1.6.0"
},
"devDependencies": {
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.0.0",
"babel-jest": "^22.1.0",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-react": "^1.1.7",
"eslint-import-resolver-webpack": "^0.8.4",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"husky": "^0.15.0-rc.8",
"jest": "^21.2.1",
"lint-staged": "^7.0.0",
"prettier": "^1.10.2",
"prettier-eslint": "^8.8.1",
"react-test-renderer": "^16.2.0",
"webpack-dev-server": "^2.11.1"
}
}