-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 782 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 782 Bytes
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
{
"name": "sample",
"version": "0.1.0",
"description": "boilerplate app",
"main": "webpack.config.js",
"scripts": {
"prestart": "webpack",
"start": "webpack-dev-server"
},
"author": "Ean Platter <eanplatter@gmail.com> (eanplatter.github.io)",
"license": "ISC",
"dependencies": {
"react": "^0.14.0",
"react-dom": "^0.14.2",
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"history": "^1.13.0",
"html-webpack-plugin": "^1.6.2",
"react-hot-loader": "^1.3.0",
"webpack": "^1.12.8",
"webpack-dev-server": "^1.12.1"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
]
}
}