-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 1.83 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
{
"name": "react-tp-cli",
"version": "3.3.1",
"description": "🧵Utilities for creating React projects | React 模板项目脚手架",
"keywords": [
"react",
"react-项目模板",
"react-项目脚手架",
"react-template",
"react-admin",
"template",
"admin"
],
"author": "wanp11",
"license": "ISC",
"type": "module",
"files": [
"dist",
"index.js",
"package.json",
"README.md"
],
"bin": {
"rt": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/wanpan11/react-template-cli.git"
},
"scripts": {
"lint": "eslint --ext .js,.jsx,ts,tsx ./ && tsc --noEmit",
"test": "tsx ./src/main.ts init",
"dev": "rollup --config ./rollup.config.js --watch",
"build": "rollup --config ./rollup.config.js",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/fs-extra": "^11.0.1",
"@types/inquirer": "^9.0.3",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "2.7.1",
"rollup": "^3.19.1",
"tslib": "^2.5.0",
"tsx": "^4.16.2"
},
"dependencies": {
"axios": "^1.3.4",
"boxen": "^7.0.2",
"chalk": "^5.3.0",
"commander": "^8.3.0",
"dayjs": "^1.11.7",
"fs-extra": "^10.0.0",
"inquirer": "^8.2.0",
"node-stream-zip": "^1.15.0",
"ora": "^6.1.2",
"typescript": "^5.0.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"bash -c tsc --noEmit"
],
"*.md": [
"prettier --write"
]
}
}