-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
81 lines (81 loc) · 1.89 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
{
"name": "antd-editable",
"version": "3.0.0",
"homepage": "http://github.com/Alkaids/antd-editable",
"repository": "[email protected]:Alkaids/antd-editable.git",
"author": "jinxin0112 <[email protected]>",
"bugs": {
"url": "http://github.com/Alkaids/antd-editable/issues"
},
"keywords": [
"react",
"react-component",
"antd",
"antd-editable"
],
"license": "MIT",
"main": "./lib/index",
"module": "./es/index",
"files": [
"es",
"lib"
],
"config": {
"port": 8000
},
"scripts": {
"start": "rc-tools run server",
"build": "rc-tools run build",
"watch-tsc": "rc-tools run watch-tsc",
"compile": "rc-tools run compile --babel-runtime",
"gh-pages": "rc-tools run gh-pages",
"pub": "rc-tools run pub --babel-runtime",
"test": "rc-tools run test",
"prepublish": "rc-tools run guard",
"pre-commit": "rc-tools run pre-commit",
"coverage": "rc-tools run test --coverage",
"lint": "rc-tools run lint",
"lint:fix": "rc-tools run lint --fix",
"prettier": "rc-tools run prettier",
"init-tslint": "rc-tools run gen-lint-config",
"lint-staged": "lint-staged"
},
"dependencies": {
"antd": "^3.15.2",
"immer": "^2.1.4",
"styled-components": "^4.2.0"
},
"devDependencies": {
"@babel/runtime": "^7.4.2",
"@types/styled-components": "^4.1.14",
"babel-plugin-import": "^1.11.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.6",
"pre-commit": "^1.2.2",
"rc-tools": "^9.5.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"typescript": "^3.4.4"
},
"babel": {
"plugins": [
[
"import",
{
"libraryName": "antd",
"libraryDirectory": "es",
"style": "css"
}
]
]
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn run pre-commit",
"git add"
]
}
}