-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 987 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
38
39
40
41
{
"name": "redux-basic-tutorial",
"version": "1.0.0",
"private": true,
"description": "http://rackt.org/redux/docs/basics/Actions.html",
"main": "index.js",
"scripts": {
"start": "npm run build && http-server ./",
"build": "browserify src/index.js -o build.js",
"watch": "watchify -d src/index.js -o build.js",
"prepublish": "npm run --if-present build",
"test": "testcafe chrome e2e/"
},
"browserify": {
"transform": [
"babelify"
]
},
"keywords": [
"redux"
],
"author": "azu",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^12.0.2",
"espower-babel": "^4.0.1",
"http-server": "^0.9.0",
"power-assert": "^1.2.0",
"testcafe": "^0.9.0",
"watchify": "^3.6.1"
},
"dependencies": {
"react": "^0.14.8",
"react-dom": "^0.14.8",
"redux": "^3.0.5"
}
}