-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
32 lines (32 loc) · 1.08 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
{
"name": "sam",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"watch": "./node_modules/.bin/webpack-dev-server --content-base dist --no-info --colors --hot --inline --progress",
"build": "rm -f dist/* && NODE_ENV=production node ./node_modules/.bin/webpack --progress --colors && npm run cp:index",
"clean": "rm -f dist/* && npm run cp:index",
"cp:index": "cp src/index.html dist/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Gunar C. Gessner <[email protected]>",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.5.2",
"babel-loader": "^6.2.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "6.3.13",
"babel-preset-stage-0": "^6.3.13",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-redux": "^4.4.0",
"redux": "^3.3.1",
"redux-devtools": "^3.1.1",
"redux-devtools-dock-monitor": "^1.1.0",
"redux-devtools-log-monitor": "^1.0.4",
"webpack": "^1.12.14",
"webpack-dev-server": "^3.1.8"
}
}