-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.28 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "React-Redux-Router-App",
"version": "0.1.0",
"description": "A sample application demonstrating use of Redux, Router in React",
"keywords": [
"react",
"preact",
"redux",
"webpack"
],
"author": "Waseem",
"contributors": [
"Waseem Siddiqui <waseemc2002@gmail.com>"
],
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/sidwaseem/React-Redux-Router-App.git"
},
"main": "src/js/index.js",
"scripts": {
"vars": "env | grep npm_package_",
"eslint": "eslint . -f table --ignore-pattern 'node_modules/*' --ignore-pattern 'build/*'",
"dev": "NODE_ENV=development webpack-dev-server",
"prod": "rm -rf build; rm -f app-code.zip; NODE_ENV=production webpack -p",
"test": "eslint src tests/**/*.js"
},
"dependencies": {
"history": "^4.6.1",
"lodash": "^4.17.4",
"preact": "^7.2.1",
"preact-compat": "^3.14.3",
"preact-redux": "^2.0.1",
"prop-types": "^15.5.5",
"rc-slider": "^7.0.3",
"react-lazyload": "^2.2.7",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-router-redux": "^5.0.0-alpha.6",
"redux": "^3.6.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.3.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"classnames": "^2.2.5",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"immutable": "^3.8.1",
"jest": "^19.0.2",
"node-sass": "^4.5.2",
"path": "^0.12.7",
"postcss-loader": "^1.3.3",
"react": "^15.5.3",
"react-dom": "^15.5.3",
"redux-devtools-extension": "^2.13.0",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2"
}
}