-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
126 lines (126 loc) · 3.5 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
118
119
120
121
122
123
124
125
126
{
"name": "react-simple-verify",
"version": "1.0.11",
"description": "React简易滑动验证组件",
"author": "Gu Qingming <[email protected]>",
"main": "dist/react-simple-verify.js",
"types": "dist/react-simple-verify.d.ts",
"files": [
"dist/"
],
"scripts": {
"start": "node scripts/start.js",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guqingming/react-simple-verify.git"
},
"keywords": [
"react",
"verify"
],
"license": "MIT",
"homepage": "https://github.com/guqingming/react-simple-verify#readme",
"peerDependencies": {
"react": ">=16.3.0",
"react-dom": ">=16.3.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@babel/core": "^7.7.4",
"@svgr/webpack": "^4.3.3",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-named-asset-import": "^0.3.5",
"babel-preset-react-app": "^9.1.0",
"camelcase": "^5.3.1",
"case-sensitive-paths-webpack-plugin": "^2.2.0",
"css-loader": "^3.2.0",
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"eslint": "^6.6.0",
"eslint-config-react-app": "^5.1.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.6.1",
"file-loader": "^4.3.0",
"fs-extra": "^8.1.0",
"html-webpack-plugin": "^4.0.0-beta.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"jest-environment-jsdom-fourteen": "^0.1.0",
"jest-resolve": "^24.9.0",
"jest-watch-typeahead": "^0.4.2",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"pnp-webpack-plugin": "^1.5.0",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"postcss-normalize": "^8.0.1",
"postcss-preset-env": "^6.7.0",
"postcss-safe-parser": "^4.0.1",
"react": "^16.12.0",
"react-app-polyfill": "^1.0.5",
"react-dev-utils": "10.0.0",
"react-dom": "^16.12.0",
"react-simple-verify": "^1.0.3",
"resolve": "^1.12.2",
"resolve-url-loader": "^3.1.1",
"sass-loader": "^8.0.0",
"semver": "^6.3.0",
"style-loader": "^1.0.0",
"terser-webpack-plugin": "^2.2.1",
"ts-pnp": "^1.1.5",
"url-loader": "^2.3.0",
"webpack": "^4.41.2",
"webpack-dev-server": "^3.9.0",
"webpack-manifest-plugin": "^2.2.0",
"workbox-webpack-plugin": "^4.3.1",
"react-scripts": "^3.4.0"
},
"devDependencies": {
"@types/react": "^16.7.22",
"@types/react-dom": "^16.0.11",
"node-sass": "^4.13.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"rollup": "^1.1.2",
"rollup-plugin-scss": "^2.1.0",
"rollup-plugin-typescript2": "^0.19.2",
"ts-loader": "^6.2.1",
"typescript": "^3.3.3"
},
"eslintConfig": {
"extends": "react-app"
},
"babel": {
"presets": [
"react-app"
]
}
}