-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) 路 2.55 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) 路 2.55 KB
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
{
"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 webpack-dev-server --config=webpack/webpack.config.dev.js --open",
"build": "cross-env NODE_ENV=production webpack --config=webpack/webpack.config.prod.js",
"build:dll": "cross-env NODE_ENV=development webpack --config=webpack/webpack.config.dll.js",
"postinstall": "npm run build:dll",
"test": "jest --config .jestconfig --coverage",
"test:watch": "jest --config .jestconfig --watch"
},
"author": "Tay Yang Shun",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.7.0",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.4",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-es2015-destructuring": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.16.0",
"clean-webpack-plugin": "^0.1.9",
"cross-env": "^3.0.0",
"css-loader": "^0.26.1",
"enzyme": "^2.7.1",
"eslint": "^3.14.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.2.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"jest": "^18.1.0",
"node-sass": "^4.3.0",
"postcss-loader": "^1.2.2",
"react-addons-test-utils": "^15.4.2",
"redux-logger": "^2.6.1",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"stylelint-config-standard": "^15.0.1",
"stylelint-webpack-plugin": "^0.5.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^2.4.0"
},
"dependencies": {
"axios": "^0.15.3",
"bootstrap": "^4.0.0-alpha.6",
"json-loader": "^0.5.4",
"lodash": "^4.15.0",
"react": "^15.2.0",
"react-autobind": "^1.0.6",
"react-component-starter": "yangshun/react-component-starter#aa549bd946fe104ff5ea4829c371e65325a016aa",
"react-document-title": "^2.0.2",
"react-dom": "^15.3.2",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"redux-thunk": "^2.2.0"
}
}