-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 910 Bytes
/
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
{
"name": "tiny-react-env",
"version": "1.0.0",
"description": "Roll your own tiny React environment using Webpack, Babel, and Sass",
"main": "src/App.js",
"scripts": {
"start": "webpack-dev-server --inline --hot",
"deploy": "webpack && surge -p ./build/ -d tiny-react-env.surge.sh"
},
"author": "Valentin Radulescu",
"license": "MIT",
"dependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.9.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.12.0",
"webpack-dev-server": "^2.11.1"
},
"babel": {
"presets": [
"env",
"react"
]
}
}