forked from dwqs/react-area-linkage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.78 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
{
"name": "react-area-linkage",
"version": "3.0.0",
"description": "React area linkage",
"author": "dwqs",
"license": "MIT",
"main": "dist/index.js",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/dwqs/react-area-linkage.git"
},
"bugs": {
"url": "https://github.com/dwqs/react-area-linkage/issues"
},
"keywords": [
"react",
"react 16",
"area",
"picker",
"react picker",
"react linkage"
],
"scripts": {
"prepush": "npm run ilint -q",
"dev": "npx cross-env NODE_ENV=development node ./build/dev-server.js",
"build:components": "NODE_ENV=production npx webpack --config ./webpack.components.config.js --progress --hide-modules",
"build": "npx cross-env NODE_ENV=production npx webpack --config ./build/webpack.prod.config.js --progress --hide-modules",
"ilint": "npx eslint src/**/*.js",
"fix": "npx eslint --fix src/**/*.js",
"postbuild": "mv ./demo/index.html ./",
"prepublishOnly": "rm -rf dist && npm run build:components && npx webpack --config ./webpack.build.config.js --progress --hide-modules"
},
"dependencies": {
"array-tree-filter": "^2.1.0",
"classnames": "^2.2.5",
"lodash.find": "^4.6.0",
"prop-types": "^15.6.0"
},
"peerDependencies": {
"react": ">= 15.0.0",
"react-dom": ">=15.0.0",
"area-data": ">=5.0.6"
},
"devDependencies": {
"area-data": "^5.0.6",
"autoprefixer": "^7.1.5",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.9",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"clean-webpack-plugin": "^0.1.17",
"compression-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^4.1.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"cssnano": "^3.10.0",
"eslint": "^4.8.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.1",
"gulp-util": "^3.0.8",
"happypack": "^4.0.0",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"open-browser-webpack-plugin": "^0.0.5",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^1.3.0",
"postcss-loader": "^2.0.6",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-hot-loader": "^3.0.0-beta.7",
"style-loader": "^0.19.0",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1",
"webpack-md5-hash": "^0.0.5",
"webpack-parallel-uglify-plugin": "^1.0.0"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 5.2.0"
}
}