-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.62 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@kkb/imgx",
"version": "4.4.0",
"description": "imgx渐进式图片加载组件,支持react服务端渲染SSR",
"scripts": {
"start": "npm run dev",
"dev": "cross-env BUILD_ENV=dev webpack serve",
"build": "rimraf build && npm run build:prod && npm run build:win",
"build:watch": "cross-env BUILD_ENV=prod TYPE_ENV=link webpack --watch",
"build:link": "cross-env BUILD_ENV=prod TYPE_ENV=link webpack",
"build:prod": "cross-env BUILD_ENV=prod webpack",
"build:win": "cross-env BUILD_ENV=win webpack",
"build:ana": "cross-env ANA_TYPE=true BUILD_ENV=prod webpack",
"prepublishOnly": "npm run build:prod",
"pub:beta": "npm publish --tag beta",
"pub:prod": "npm publish --tag latest",
"tags": "git tag v0.0.1 && git push origin --tags"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"maintainers": [
"zhanzhiqiang"
],
"keywords": [],
"author": {
"name": "tec",
"email": "[email protected]",
"url": "https://www.jonhuu.com"
},
"homepage": "https://github.com/rdmix/imgx",
"repository": {
"type": "git",
"url": "https://github.com/rdmix/imgx"
},
"files": [
"build"
],
"license": "ISC",
"lint-staged": {
"*.{js}": [
"pretty-quick --staged",
"eslint src/ --fix",
"git add"
]
},
"resolutions": {
"sanitize.css": "12.0.1"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-object-rest-spread": "7.12.1",
"@babel/plugin-transform-runtime": "7.12.10",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.12.11",
"@babel/preset-react": "7.12.10",
"@babel/preset-typescript": "7.12.7",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@typescript-eslint/eslint-plugin": "4.14.0",
"autoprefixer": "10.2.3",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.2",
"bundle-dts": "1.1.4",
"clean-webpack-plugin": "3.0.0",
"compression-webpack-plugin": "7.1.2",
"copy-webpack-plugin": "7.0.0",
"cross-env": "7.0.3",
"css-loader": "5.0.1",
"eslint": "7.18.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-airbnb-typescript": "12.0.0",
"eslint-config-prettier": "7.2.0",
"eslint-formatter-pretty": "4.0.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-compat": "3.9.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-unicorn": "26.0.1",
"filemanager-webpack-plugin": "3.1.0",
"friendly-errors-webpack-plugin": "1.7.0",
"html-webpack-plugin": "5.0.0-beta.1",
"less": "4.1.0",
"less-loader": "7.3.0",
"mini-css-extract-plugin": "1.3.4",
"postcss": "8.2.4",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-loader": "4.2.0",
"postcss-normalize": "9.0.0",
"postcss-preset-env": "6.7.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"regenerator-runtime": "0.13.3",
"rimraf": "3.0.2",
"terser-webpack-plugin": "5.1.1",
"ts-loader": "^9.2.6",
"typescript": "4.1.3",
"uglifyjs-webpack-plugin": "2.2.0",
"webpack": "5.68.0",
"webpack-bundle-analyzer": "4.4.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.7.4",
"webpack-merge": "5.8.0",
"webpackbar": "5.0.0-3"
},
"dependencies": {}
}