-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.48 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
{
"name": "react-chunkable",
"version": "2.0.1",
"description": "💥 Simplest way to code split and load async chunks using Webpack 2 and React Router V4",
"homepage": "https://github.com/kamleshchandnani/react-chunkable#readme",
"keywords": [
"react",
"code splitting",
"webpack",
"react router",
"React router v4",
"magic comments",
"async chunk",
"async loading"
],
"repository": {
"type": "git",
"url": "https://github.com/kamleshchandnani/react-chunkable.git"
},
"files": [
"dist"
],
"engines": {
"npm": ">=3",
"node": ">=8"
},
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"author": "Kamlesh Chandnani",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"babel-core": "6.16.0",
"babel-eslint": "7.1.1",
"babel-loader": "6.2.7",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.2.1",
"babel-preset-kamlesh": "git+https://github.com/kamleshchandnani/babel-preset-kamlesh.git",
"babel-preset-react": "6.22.0",
"babel-preset-stage-1": "^6.22.0",
"eslint": "^4.13.1",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-kamlesh": "git+https://github.com/kamleshchandnani/eslint-config-kamlesh.git",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-loader": "^1.8.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.1.0",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"npm-run-all": "^4.1.2",
"progress-bar-webpack-plugin": "^1.9.3",
"react-hot-loader": "^3.0.0",
"rollup": "^0.52.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-filesize": "^1.5.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"uglify-es": "^3.2.2",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.4.1"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"scripts": {
"clean": "rimraf dist",
"build": "run-s clean && run-p build:es build:cjs",
"build:es": "NODE_ENV=es rollup -c",
"build:cjs": "NODE_ENV=cjs rollup -c",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint"
]
}
}