forked from sohamkamani/blog-example__redux-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.57 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
{
"name": "redux-data",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"replace-scripts:dev": "sed -i.bak s/bundle.min.js/bundle.js/g index.html && rm index.html.bak",
"replace-scripts:build": "sed -i.bak s/bundle.js/bundle.min.js/g index.html && rm index.html.bak",
"start": "npm run replace-scripts:dev && open http://localhost:8080 && webpack-dev-server -d --progress --colors",
"test": "mocha --compilers js:babel-core/register test/**/*.js",
"lint": "eslint --ext js --ext jsx src test",
"build": "npm run replace-scripts:build && webpack && uglify -s ./bundle.js -o ./bundle.min.js"
},
"author": "sohamkamani <[email protected]>",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "^6.8.0",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"chai": "^3.5.0",
"css-loader": "^0.23.0",
"eslint": "^2.10.1",
"eslint-plugin-react": "^4.2.3",
"json-loader": "^0.5.4",
"mocha": "^2.4.5",
"node-sass": "^3.4.2",
"postcss-loader": "^0.9.1",
"precss": "^1.4.0",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"uglify": "^0.1.5",
"url-loader": "^0.5.7",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"classnames": "2.2.5",
"lodash": "^4.12.0",
"moment": "^2.13.0",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-redux": "^4.4.5",
"redux": "^3.3.1",
"request-promise": "^3.0.0",
"superagent": "^1.8.3"
}
}