-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.72 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
{
"name": "react-webpack-babel-sass-boilerplate",
"version": "2.0.0",
"description": "Boilerplate React application with Webpack, Babel and Sass.",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/webpack -p --mode production",
"start": "./node_modules/.bin/webpack-dev-server --config ./webpack.config.js --mode development",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcnuri-demo/react-webpack-babel-sass-boilerplate.git"
},
"keywords": [],
"author": {
"name": "Marc Nuri",
"url": "https://blog.marcnuri.com"
},
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"bugs": {
"url": "https://github.com/marcnuri-demo/react-webpack-babel-sass-boilerplate/issues"
},
"homepage": "https://github.com/marcnuri-demo/react-webpack-babel-sass-boilerplate#readme",
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/plugin-proposal-object-rest-spread": "7.3.2",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-runtime": "7.2.0",
"@babel/preset-env": "7.3.1",
"@babel/preset-react": "7.0.0",
"@babel/runtime": "7.3.1",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.5",
"css-loader": "^1.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.1",
"node-sass": "^4.9.1",
"sass-loader": "^7.0.3",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"react": "^16.8.1",
"react-dom": "^16.8.1"
}
}