This repository was archived by the owner on Jan 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 3.03 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "react-redux-starter",
"version": "0.0.1",
"description": "Barebones React Redux starter kit on Webpack",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development babel-node scripts/start",
"build": "cross-env NODE_ENV=production babel-node scripts/build",
"build:dll": "cross-env NODE_ENV=development webpack --config=webpack/webpack.config.dll.js",
"postinstall": "npm run build:dll && flow-scripts stub",
"flow": "flow check",
"lint": "npm run lint:src && npm run lint:scripts",
"lint:src": "eslint src/js/**/*.{js,jsx} --cache",
"lint:scripts": "eslint webpack scripts --cache",
"test": "jest --coverage",
"test:watch": "jest --watch",
"ci": "npm run lint && npm run flow && npm run test && npm run build "
},
"author": "Tay Yang Shun",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.24.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-register": "^6.24.1",
"cache-loader": "^1.0.3",
"clean-webpack-plugin": "^0.1.16",
"cross-env": "^5.0.1",
"css-loader": "^0.28.4",
"cssnano": "^3.10.0",
"enzyme": "^2.9.1",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-loader": "^1.9.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.11.2",
"flow-bin": "^0.51.0",
"flow-scripts": "^0.3.0",
"flow-status-webpack-plugin": "^0.1.7",
"html-webpack-plugin": "^2.29.0",
"jest": "^20.0.4",
"lodash-webpack-plugin": "^0.11.4",
"node-sass": "^4.5.3",
"optimize-css-assets-webpack-plugin": "^2.0.0",
"postcss-loader": "^2.0.6",
"react-addons-test-utils": "^15.6.0",
"react-dev-utils": "^0.5.2",
"react-hot-loader": "3.0.0-beta.7",
"react-test-renderer": "^15.6.1",
"redux-logger": "^3.0.6",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-webpack-plugin": "^0.9.0",
"url-loader": "^0.5.9",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.6.1",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"axios": "^0.16.2",
"babel-polyfill": "^6.23.0",
"bootstrap": "^4.0.0-alpha.6",
"lodash": "^4.15.0",
"react": "^15.6.1",
"react-autobind": "^1.0.6",
"react-document-title": "^2.0.3",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"browserslist": [
"last 2 versions",
"iOS >= 9",
"Safari >= 9",
"not ie <= 11"
]
}