-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.18 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.18 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@wytxer/wy-cli",
"version": "1.1.9",
"description": "一个开箱即用的大前端脚手架创建工具。",
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"eslint": "eslint . --ext .ts,.tsx",
"es:fix": "eslint . --ext .ts,.tsx --fix"
},
"bin": {
"wy": "./bin/wy"
},
"main": "lib/index.js",
"dependencies": {
"archiver": "^5.3.0",
"chalk": "^4.1.2",
"commander": "^8.3.0",
"connect-history-api-fallback": "^1.6.0",
"dotenv": "^14.3.0",
"dotenv-expand": "^8.0.1",
"express": "^4.17.2",
"fs-extra": "^10.0.0",
"http-proxy-middleware": "^1.3.1",
"http-server": "^14.0.0",
"inquirer": "^8.2.0",
"lodash": "^4.17.21",
"mocker-api": "^2.9.2",
"ora": "^5.4.1",
"serve-static": "^1.15.0",
"shelljs": "^0.8.4",
"update-notifier": "^5.1.0"
},
"devDependencies": {
"@types/archiver": "^5.3.1",
"@types/connect-history-api-fallback": "^1.3.5",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.2.0",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.6",
"@types/shelljs": "^0.8.11",
"@types/update-notifier": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.6.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.4",
"typescript": "^4.5.4"
},
"engines": {
"node": "16"
},
"license": "MIT",
"homepage": "https://github.com/wytxer/wy-cli/#readme",
"keywords": [
"node",
"cli",
"node cli",
"ts",
"typescript",
"wy",
"wy init",
"wy app"
],
"author": {
"name": "wytxer",
"url": "https://github.com/wytxer"
},
"repository": {
"type": "git",
"url": "git@github.com:wytxer/wy-cli.git"
},
"bugs": {
"url": "https://github.com/wytxer/wy-cli/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run es:fix"
]
},
"files": [
"/bin",
"/lib"
]
}