-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 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
{
"name": "react-redux-shop-card",
"version": "0.0.1",
"description": "This is impimentation shop cart on React.js and Redux",
"main": "./source/main.js",
"scripts": {
"server": "static ./public -p 3000",
"build": "browserify -t [ babelify --presets [ es2015 react ] ] source/main.js -o public/js/scripts.js",
"watch": "watchify -t [ babelify --presets [ es2015 react ] ] source/main.js -o public/js/scripts.js"
},
"repository": {
"type": "git",
"url": "/~https://github.com/omelniz/react-redux-shop-cart.git"
},
"keywords": [
"Shop",
"Cart",
"React",
"Redux"
],
"author": "omelniz.me",
"license": "ISC",
"bugs": {
"url": "/~https://github.com/omelniz/react-redux-shop-cart/issues"
},
"homepage": "/~https://github.com/omelniz/react-redux-shop-cart",
"devDependencies": {
"watchify": "~3.7.0",
"uglifyjs": "~2.4.10",
"livereactload": "~2.2.1",
"browserify": "~13.0.0",
"babel": "~6.5.2",
"babelify": "~7.2.0",
"envify": "~3.4.0",
"babel-polyfill": "~6.7.2",
"babel-preset-react": "~6.5.0",
"babel-preset-es2015": "~6.6.0",
"node-static": "~0.7.7"
},
"dependencies": {
"redux-thunk": "~2.0.1",
"react-redux": "~4.4.1",
"immutable": "~3.7.6",
"redux-localstorage": "~0.4.0",
"react": "~0.14.7",
"react-dom": "~0.14.7",
"redux": "~3.3.1",
"redux-logger": "~2.6.1",
"axios": "~0.9.1"
}
}