-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.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
{
"name": "@w3ctech-editorial-department/craco-antd-mobile",
"version": "1.0.3",
"description": "A craco plugin to use Ant Design Mobile with create-react-app",
"main": "lib/craco-antd-mobile.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"format": "prettier --write **/*.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/w3ctech-editorial-department/craco-antd-mobile.git"
},
"keywords": [
"craco",
"create-react-app",
"React",
"Ant Design Mobile",
"UI library",
"UI components"
],
"author": "liuliangsir <liuliang@w3ctech.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/w3ctech-editorial-department/craco-antd-mobile/issues"
},
"homepage": "https://github.com/w3ctech-editorial-department/craco-antd-mobile#readme",
"devDependencies": {
"@craco/craco": "^6.2.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"react-scripts": "^4.0.3"
},
"dependencies": {
"babel-plugin-import": "^1.13.1",
"craco-less": "1.17.0",
"less-vars-to-js": "^1.3.0"
},
"peerDependencies": {
"@craco/craco": "^6.2.0",
"antd-mobile": ">= 2.3.4",
"react-scripts": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write",
"git add"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix lib",
"git add"
]
}
}