-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.04 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
{
"name": "react-es6-demo",
"version": "0.1.0",
"description": "Showcasing how to use React with ECMAScript 6",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "mkdir -p dist && ./node_modules/webpack/bin/webpack.js --progress ",
"watch": "mkdir -p dist && ./node_modules/webpack/bin/webpack.js --progress --colors --watch "
},
"repository": {
"type": "git",
"url": "https://github.com/jlowgren/react-es6-demo.git"
},
"author": "Joacim Löwgren",
"license": "ISC",
"bugs": {
"url": "https://github.com/jlowgren/react-es6-demo/issues"
},
"homepage": "https://github.com/jlowgren/react-es6-demo",
"devDependencies": {
"babel-core": "^4.7.16",
"babel-loader": "^4.2.0",
"webpack": "^1.7.3"
},
"dependencies": {
"bootstrap-sass": "~3.3.1",
"css-loader": "^0.14.3",
"file-loader": "^0.8.4",
"node-sass": "^3.1.2",
"react": "^0.13.0-rc2",
"sass-loader": "^1.0.2",
"style-loader": "^0.12.3",
"url-loader": "^0.5.6"
}
}