-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.22 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
{
"name": "create-antdp",
"version": "1.0.9",
"description": "Creates a antdp application using the command line.",
"homepage": "https://antdpro.github.io/antdp",
"author": "Kenny Wong <wowohoo@qq.com> (https://github.com/jaywcjlove)",
"main": "lib/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/antdpro/create-antdp"
},
"bin": {
"create-antdp": "lib/cli.js"
},
"scripts": {
"prepare": "husky install",
"build": "tsbb build src/cli.ts",
"watch": "tsbb watch src/cli.ts",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,md,json}'",
"coverage": "tsbb test --coverage --detectOpenHandles",
"test": "tsbb test --detectOpenHandles"
},
"files": [
"lib",
"src"
],
"jest": {
"testMatch": [
"<rootDir>/test/*.{ts,tsx}"
]
},
"keywords": [
"dva",
"umi",
"ant-design",
"antd",
"antdp",
"tsbb",
"create-tsbb",
"react",
"redux",
"rematch",
"uiw",
"redux-saga",
"framework",
"frontend"
],
"devDependencies": {
"pretty-quick": "^3.1.3",
"prettier": "^2.8.7",
"husky": "^8.0.3",
"tsbb": "^4.0.6"
},
"dependencies": {
"create-kkt": "3.0.0"
}
}