-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.02 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.02 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@hs/hs-fe-walle",
"version": "0.0.1-alpha.2",
"main": "./lib/index.js",
"module": "./es/index.js",
"bin": {
"walle": "./bin/walle"
},
"scripts": {
"debug": "tsnd -r tsconfig-paths/register debug/index.ts --type-check false gen",
"debug:init": "tsnd -r tsconfig-paths/register debug/index.ts --type-check false init",
"build": "father build"
},
"files": [
"bin",
"lib",
"es"
],
"dependencies": {
"@babel/runtime": "^7.13.10",
"change-case": "^3.0.2",
"consola": "^2.3.0",
"dayjs": "^1.8.32",
"download-git-repo": "^3.0.2",
"execa": "^5.1.1",
"form-data": "^3.0.0",
"fs-extra": "^7.0.1",
"get-port": "^5.1.1",
"got": "^11.5.1",
"json-schema": "^0.3.0",
"json-schema-to-typescript": "^10.0.2",
"json5": "^2.1.0",
"mockjs": "^1.0.1-beta3",
"module-alias": "^2.2.2",
"ora": "5.4.1",
"prettier": "^2.2.1",
"prompts": "^2.0.4",
"rimraf": "^3.0.2",
"signal-exit": "^3.0.3",
"simple-git": "^2.41.1",
"swagger-client": "^3.12.0",
"to-json-schema": "^0.2.5",
"tough-cookie": "^4.0.0",
"tough-cookie-file-store": "^2.0.3",
"ts-node": "^8.0.2",
"typescript": "^4.2.3",
"vtils": "^4.33.0",
"yargs": "^16.2.0",
"yargs-parser": "^20.2.7"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-angular": "^17.3.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/fs-extra": "^5.0.4",
"@types/json-schema": "^7.0.1",
"@types/json5": "^0.0.30",
"@types/mockjs": "^1.0.2",
"@types/node": "^10.12.10",
"@types/prompts": "^1.2.0",
"@types/react": "^16.9.2",
"@types/rimraf": "^3.0.2",
"@types/signal-exit": "^3.0.0",
"@types/swagger-schema-official": "^2.0.21",
"@types/to-json-schema": "^0.2.0",
"@types/tough-cookie-file-store": "^2.0.1",
"@types/yargs": "^16.0.1",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"babel-eslint": "^10.1.0",
"babel-plugin-component": "^1.1.1",
"chalk": "^4.1.1",
"codecov": "^3",
"debug": "^4.3.2",
"dumi": "^1.1.10",
"eslint": "^8.28.0",
"father": "^2.30.5",
"gh-pages": "^2.0.1",
"husky": "^4.3.6",
"jest": "^26",
"lint-staged": "^10.5.3",
"notify-dingtalk": "^1.2.0",
"openapi-types": "^7.0.1",
"semver": "^7.3.5",
"shx": "^0.3.2",
"standard-version": "^4.4.0",
"tempy": "^0.3.0",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.2",
"typedoc": "^0.14.2",
"typescript-snapshots-plugin": "^1.7.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/*.{js,json,vue}": [
"eslint --fix"
]
},
"repository": "https://github.com/samwangdd/WALLE.git",
"author": "samwangdd <wyysammore@gmail.com>",
"license": "MIT",
"_moduleAliases": {
"~": ".",
"@": "src"
}
}