-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.86 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-webpack-starter",
"version": "2.1.0",
"description": "Basic packages and scripts to start app developing in react, redux and webpack",
"main": "webpack.config.js",
"scripts": {
"start": "npm run server:dev",
"server:dev": "webpack-dev-server --config webpack/webpack-dev.config.js",
"server:prod": "webpack-dev-server --config webpack/webpack-prod.config.js",
"build": "webpack --progress --colors --config webpack/webpack-prod.config.js",
"build:prod": "npm run build",
"build:dev": "webpack --progress --colors --config webpack/webpack-dev.config.js",
"npm-check": "npm-check --skip-unused",
"test": "BABEL_DISABLE_CACHE=1 jest --config ./jest-config.json",
"eslint": "./node_modules/eslint/bin/eslint.js ./source/**/*.js ./source/**/**/*.js ./source/**/*.jsx ./source/**/**/*.jsx",
"watch": "npm run watch:dev",
"watch:dev": "webpack --progress --colors --watch --config webpack/webpack-dev.config.js",
"postinstall": "./postinstall.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artemdemo/react-webpack-starter.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/artemdemo/react-webpack-starter/issues"
},
"homepage": "https://github.com/artemdemo/react-webpack-starter#readme",
"dependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.16.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.22.0",
"babel-runtime": "^6.20.0",
"bootstrap": "^3.3.7",
"classnames": "^2.2.5",
"css-loader": "^0.28.0",
"extract-text-webpack-plugin": "^2.0.0-rc.2",
"file-loader": "^0.11.1",
"firebase": "^3.9.0",
"history": "^4.3.0",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.22.0",
"less": "^2.7.1",
"less-loader": "^4.0.3",
"prop-types": "^15.5.6",
"react": "^15.5.3",
"react-dom": "^15.5.3",
"react-redux": "^5.0.4",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"redux-logger": "^3.0.1",
"redux-thunk": "^2.1.0",
"style-loader": "^0.16.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1"
},
"devDependencies": {
"@types/jest": "^19.2.2",
"clean-webpack-plugin": "^0.1.15",
"enzyme": "^2.8.0",
"eslint": "^3.19.0",
"eslint-config-artem-react": "git+https://github.com/artemdemo/eslint-config-artem-react.git#2.2.0",
"jest-cli": "^19.0.2",
"npm-check": "^5.4.0",
"react-addons-test-utils": "^15.4.1",
"react-test-renderer": "^15.5.4",
"redux-mock-store": "^1.2.1",
"webpack-dev-server": "^2.4.2"
}
}