-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
37 lines (37 loc) · 1000 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": "webpack-example",
"version": "0.0.1",
"description": "Webpack example",
"main": "dist/index.js",
"engines": {
"node": ">=0.10.32"
},
"scripts": {
"build": "webpack --progress --profile --colors",
"watch": "webpack-dev-server --hot --inline --progress --colors",
"test": "echo \"No unit tests and e2e tests yet\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/richard-lopes/webpack-example.git"
},
"bugs": {
"url": "https://github.com/richard-lopes/webpack-example/issues"
},
"author": "Richard LOPES",
"license": "MIT",
"homepage": "https://github.com/richard-lopes/webpack-example#readme",
"dependencies": {
"alt": "0.17.1",
"babel-runtime": "5.6.18",
"react": "0.13.3",
"react-router": "0.13.3"
},
"devDependencies": {
"babel-core": "5.6.18",
"babel-loader": "5.3.1",
"html-webpack-plugin": "1.6.0",
"webpack": "1.12.1",
"webpack-dev-server": "1.12.1"
}
}