-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
72 lines (72 loc) · 1.77 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
{
"name": "craco-antd",
"version": "2.0.0",
"description": "A craco plugin to use Ant Design with create-react-app ",
"main": "lib/craco-antd.js",
"scripts": {
"test": "jest --testPathIgnorePatterns test-app",
"lint": "eslint --fix lib",
"format": "prettier --write **/*.js",
"puglish": "type jp2a >/dev/null 2>&1 || brew install jp2a; curl -s https://i.imgur.com/GuoVuX1.jpg | jp2a -",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/DocSpring/craco-antd.git"
},
"keywords": [
"craco",
"create-react-app",
"React",
"Ant Design",
"UI library",
"UI components"
],
"author": "Nathan Broadbent <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DocSpring/craco-antd/issues"
},
"homepage": "https://github.com/DocSpring/craco-antd#readme",
"devDependencies": {
"@craco/craco": "7.1.0",
"clone": "2.1.2",
"coveralls": "3.1.1",
"eslint": "8.13.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "^7.0.4",
"jest": "27.5.1",
"lint-staged": "12.4.0",
"prettier": "2.6.2",
"react-scripts": "5.0.1"
},
"dependencies": {
"babel-plugin-import": "1.13.5",
"craco-less": "3.0.1",
"less-vars-to-js": "1.3.0"
},
"peerDependencies": {
"@craco/craco": ">=7.0.0",
"antd": ">=3.0.0",
"react-scripts": ">=5.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": [
"yarn prettier --write",
"git add"
],
"*.{js,jsx,ts,tsx}": [
"yarn eslint --fix lib",
"git add"
]
},
"resolutions": {
"react-scripts/webpack-dev-server": ">=3.11.0"
}
}