-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.64 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
{
"name": "react-modal-store",
"version": "1.0.0",
"description": "global manage react modal",
"files": [
"lib",
"src"
],
"main": "lib/index.js",
"module": "lib/index.es.js",
"jsnext:main": "lib/index.es.js",
"typings": "lib/index.d.ts",
"scripts": {
"dev": "parcel ./example/index.html --open",
"clean": "rm -rf lib/",
"build": "rollup -c",
"release": "bash build/git.sh && bash build/release.sh"
},
"author": "xiemengxiong",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/react": "^16.9.42",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"antd": "^4.8.2",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.7",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"react": "^16.14.0",
"react-dom": "^16.13.1",
"rollup": "^2.33.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.29.0",
"typescript": "^4.0.5"
},
"dependencies": {
"tslib": "^2.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write",
"git add"
]
}
}