-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
77 lines (77 loc) · 2.14 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
{
"name": "react-vcode",
"version": "1.0.11",
"description": "a react verification code component",
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"dev": "webpack-dev-server --config webpack.config.js",
"build:babel": "babel src -d lib",
"build": "webpack --config webpack.build.config.js --progress --profile --colors",
"prettier": "prettier --write \"src/index.tsx\""
},
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/javaLuo/react-vcode.git"
},
"keywords": [
"vcode",
"react-vcode"
],
"author": "Logic",
"license": "MIT",
"bugs": {
"url": "https://github.com/javaLuo/react-vcode/issues"
},
"homepage": "https://github.com/javaLuo/react-vcode#readme",
"dependencies": {
"es6-object-assign": "^1.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/runtime": "^7.11.2",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"autoprefixer": "^9.8.6",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.1.0",
"css-loader": "^4.3.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"file-loader": "^6.1.0",
"postcss-loader": "^4.0.2",
"prettier": "^2.1.1",
"source-map-loader": "^1.1.0",
"style-loader": "^1.2.1",
"typescript": "^4.0.2",
"url-loader": "^4.1.0",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"browserslist": [
"iOS >= 8",
"last 1 versions",
"> 2%",
"not dead",
"not op_mini all"
]
}