-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.46 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.46 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
{
"name": "react-static-starter",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.config.production.js --progress",
"eslint": "eslint src/**/*.js; exit 0",
"poststatic": "rm -rf bin/",
"prebuild": "rm -rf public/ && mkdir -p public/static",
"prestart": "rm -rf public/ && mkdir -p public/static",
"prestatic": "rm -rf bin/ && npm run build",
"start": "HOT=1 NODE_ENV=development webpack-dev-server --config webpack.config.development.js",
"static": "NODE_ENV=production webpack --config webpack.config.static.js --progress && find bin/*.js | xargs -I % node %",
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sreucherand/react-static-starter.git"
},
"author": "Sylvain Reucherand <hello@sylvainreucherand.fr>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sreucherand/react-static-starter/issues"
},
"homepage": "https://github.com/sreucherand/react-static-starter#readme",
"devDependencies": {
"@babel/core": "^7.0.0-beta.56",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.56",
"@babel/preset-env": "^7.0.0-beta.56",
"@babel/preset-react": "^7.0.0-beta.56",
"autoprefixer": "^9.1.0",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.0-beta",
"compile-string-loader": "^1.0.1",
"css-loader": "^1.0.0",
"error-overlay-webpack-plugin": "^0.1.5",
"eslint": "^5.3.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^3.1.0",
"fs-extra": "^7.0.0",
"mini-css-extract-plugin": "^0.4.1",
"node-fetch": "^2.2.0",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"postcss-loader": "^3.0.0",
"postcss-nested": "^3.0.0",
"prettier": "^1.14.2",
"style-loader": "^0.22.1",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.16.5",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-manifest-plugin": "^2.0.3",
"webpack-node-externals": "^1.7.2",
"workbox-webpack-plugin": "^3.4.1"
},
"dependencies": {
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-helmet": "^5.2.0"
}
}