-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.99 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
{
"name": "react-webpack-skeleton",
"version": "1.0.0",
"description": "React Webpack Skeleton",
"scripts": {
"clean:build:dev": "npm run clean && npm run _build:dev",
"clean:build:prod": "npm run clean && npm run _build:prod",
"dev:server": "./node_modules/.bin/cross-env NODE_ENV=dev node ./node_modules/webpack-dev-server/bin/webpack-dev-server --inline --progress --profile --watch --open",
"clean": "rimraf target",
"_build:dev": "./node_modules/.bin/cross-env NODE_ENV=dev npm run _webpack --progress --profile",
"_build:prod": "./node_modules/.bin/cross-env NODE_ENV=production npm run _webpack -- --progress --profile && npm run _archive:dist",
"_archive:dist": "npm run _bestzip target/react-webpack-skeleton.zip target/*",
"_webpack": "./node_modules/.bin/cross-env ./node_modules/.bin/webpack",
"_webpack-dev-server": "./node_modules/.bin/cross-env ./node_modules/.bin/webpack-dev-server",
"_bestzip": "./node_modules/.bin/cross-env ./node_modules/.bin/bestzip"
},
"repository": {
"type": "git",
"url": "https://github.com/gsaandy/react-webpack-skeleton.git"
},
"author": "sandeep.gs",
"license": "UNLICENSED",
"homepage": "",
"dependencies": {
"babel-polyfill": "^6.13.0",
"jquery": "^3.1.0",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-router": "^2.8.0"
},
"devDependencies": {
"@easy-webpack/config-common-chunks-simple": "^2.0.1",
"@easy-webpack/config-copy-files": "^1.0.0",
"@easy-webpack/config-css": "^2.3.2",
"@easy-webpack/config-env-development": "^2.1.1",
"@easy-webpack/config-env-production": "^2.1.0",
"@easy-webpack/config-external-source-maps": "^2.0.1",
"@easy-webpack/config-fonts-and-images": "^1.2.1",
"@easy-webpack/config-generate-index-html": "^2.0.1",
"@easy-webpack/config-global-bluebird": "^1.2.0",
"@easy-webpack/config-global-jquery": "^1.2.0",
"@easy-webpack/config-global-regenerator": "^1.2.0",
"@easy-webpack/config-html": "^2.0.2",
"@easy-webpack/config-json": "^2.0.2",
"@easy-webpack/config-sass": "^1.1.2",
"@easy-webpack/config-source-map-support": "^1.0.0",
"@easy-webpack/config-test-coverage-istanbul": "^2.0.2",
"@easy-webpack/config-uglify": "^2.1.0",
"@easy-webpack/core": "^1.3.2",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"bestzip": "^1.1.3",
"copy-webpack-plugin": "^3.0.1",
"cross-env": "^2.0.0",
"eslint": "^3.3.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.0",
"eslint-plugin-react": "^6.1.2",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.22.0",
"path": "^0.12.7",
"rimraf": "^2.5.4",
"source-map-loader": "^0.1.5",
"webpack": "^2.1.0-beta.21",
"webpack-dev-server": "^1.14.1"
}
}