-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.17 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
{
"name": "web-client-react-redux",
"version": "0.1.0",
"description": "A starter kit to quickly start a web app using react & redux",
"main": "./src/app.js",
"scripts": {
"start": "webpack-dev-server --progress --inline --hot --config config/webpack.dev.config.js",
"clean": "rm -rf dist coverage",
"build": "npm run clean && npm test && webpack --progress --config config/webpack.production.config.js",
"test": "jest --config=config/jest.config.json",
"test:watch": "npm test -- --watch",
"test:build": "npm test -- --bail",
"test:coverage": "npm test -- --coverage"
},
"keywords": [
"react",
"redux",
"starter"
],
"author": "Jean-Baptiste PENRATH",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-module-alias": "^1.6.0",
"babel-plugin-module-resolver": "^3.0.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.7",
"enzyme": "^3.1.1",
"enzyme-adapter-react-16": "^1.0.4",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-babel-module": "^4.0.0-beta.3",
"eslint-import-resolver-babel-module-alias": "^1.5.1",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"ip": "^1.1.5",
"jest": "^21.2.1",
"jest-css-modules": "^1.1.0",
"poststylus": "^1.0.0",
"style-loader": "^0.19.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"uglify-js": "^3.1.8",
"uglifyjs-webpack-plugin": "^1.0.1",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"dependencies": {
"immutable": "^3.8.2",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-router-redux": "^4.0.8",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
}
}