-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 1020 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
36
37
{
"name": "simple-babel-webpack-template",
"version": "1.0.0",
"description": "",
"main": "src/application.js",
"scripts": {
"clean": "rimraf dist/built",
"build": "npm run clean && webpack --config webpack/production.config.js",
"devserver": "webpack-dev-server --port 3000 --config webpack/development.config.js --progress --colors --hot --content-base dist"
},
"author": "Paul Kögel",
"repository": {
"type": "git",
"url": "https://github.com/paulkogel/simple-babel-webpack-template/"
},
"license": "ISC",
"engines": {
"node": ">= 5.0.0",
"npm": ">= 3.3.6"
},
"devDependencies": {
"babel": "^6.0.15",
"babel-cli": "^6.4.0",
"babel-core": "^6.1.2",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.1.2",
"babel-preset-react": "^6.1.2",
"rimraf": "^2.5.0",
"webpack": "^1.12.3",
"webpack-dev-server": "^1.12.1",
"webpack-merge": "^0.7.3"
},
"dependencies": {
"react": "^0.14.2",
"react-dom": "^0.14.2"
}
}