forked from spapas/react-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.4 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "react-redux-tutorial",
"version": "2.0.0",
"description": "A react redux tutorial",
"main": "",
"devDependencies": {
"babel": "^6.5.2",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"uglify": "^0.1.5",
"uglifyjs": "^2.4.10",
"watchify": "^3.7.0"
},
"dependencies": {
"history": "^1.17.0",
"jquery": "^2.2.4",
"react": "^0.14.8",
"react-dom": "^0.14.8",
"react-notification": "^4.3.0",
"react-redux": "^4.4.5",
"react-router": "^1.0.3",
"react-router-redux": "^2.1.0",
"redux": "^3.5.2",
"redux-form": "^4.2.2",
"redux-thunk": "^1.0.3"
},
"scripts": {
"watch": "watchify srcjs/main.js -v -t babelify -o static/bundle.js",
"build": "browserify srcjs/main.js -t babelify | uglifyjs -mc warnings=false > static/bundle.js"
},
"babel": {
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-object-rest-spread"
]
},
"repository": {
"type": "git",
"url": "https://github.com/spapas/react-redux-tutorial"
},
"author": "",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/spapas/react-redux-tutorial/issues"
},
"homepage": "https://github.com/spapas/react-redux-tutorial"
}