-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
65 lines (65 loc) · 1.59 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
{
"name": "@ant-design/nextjs-registry",
"version": "1.0.2",
"description": "Register of Next.js for Ant Design",
"keywords": [
"react",
"nextjs",
"antd",
"ant-design"
],
"license": "MIT",
"main": "./lib/index",
"module": "./es/index",
"files": [
"es",
"lib"
],
"homepage": "https://github.com/ant-design/nextjs-registry",
"repository": {
"type": "git",
"url": "[email protected]:ant-design/nextjs-registry.git"
},
"bugs": {
"url": "https://github.com/ant-design/nextjs-registry/issues"
},
"scripts": {
"dev": "next dev example/with-app-router",
"compile": "father build",
"lint": "eslint src/ --ext .ts,.tsx,.jsx,.js,.md",
"lint-staged": "lint-staged",
"prepare": "husky install",
"prepublishOnly": "npm run compile && np --yolo --no-publish",
"prettier": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\""
},
"devDependencies": {
"@ant-design/cssinjs": "^1.18.2",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@umijs/fabric": "^2.0.8",
"antd": "^5.12.5",
"eslint": "^7.0.0",
"father": "^4.3.7",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"next": "^15.0.0",
"np": "^7.0.0",
"prettier": "^2.0.5",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@ant-design/cssinjs": "^1.18.2",
"antd": "^5.0.0",
"next": "^14.0.0 || ^15.0.0",
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"lint-staged": {
"**/*.{js,jsx,tsx,ts,md,json}": [
"prettier --write",
"git add"
]
}
}