-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
127 lines (127 loc) · 3.24 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
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
117
118
119
120
121
122
123
124
125
126
127
{
"name": "dom-to-code-monorepo",
"version": "1.5.4",
"private": true,
"packageManager": "[email protected]",
"author": "better-tcy",
"engines": {
"node": ">=14",
"pnpm": ">=7"
},
"scripts": {
"bootstrap": "pnpm i &&pnpm build:all",
"build": "esno ./scripts/build.ts",
"build:all": "turbo run build",
"build:ci": "pnpm i --store=node_modules/.pnpm-store --frozen-lockfile && turbo run build --no-cache",
"check-update": "esno ./scripts/check-update.ts",
"clean": "rimraf **/node_modules/**",
"commit": "git add . &&git-cz",
"lint": "pnpm lint:es",
"lint:change": "lint-staged",
"lint:es": "eslint --fix . --ext .jsx,.js,.vue,.ts,.tsx,.md",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"release": "esno ./scripts/release.ts",
"test": "pnpm run -r test"
},
"devDependencies": {
"@antfu/eslint-config": "^0.27.0",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/eslint": "^8.4.6",
"@types/got": "^9.6.12",
"@types/node": "*",
"@types/prettier": "^2.7.1",
"@vitalets/google-translate-api": "^8.0.0",
"bumpp": "^8.2.1",
"commitizen": "^4.2.5",
"conventional-changelog-cli": "*",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"deepl": "^1.0.13",
"eslint": "^8.24.0",
"esno": "*",
"globby": "11.1.0",
"got": "^12.5.2",
"hpagent": "^1.1.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mdast": "^3.0.0",
"npm-check-updates": "^16.3.3",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"remark-parse": "^10.0.1",
"remark-stringify": "^10.0.2",
"rimraf": "^3.0.2",
"turbo": "^1.5.4",
"typescript": "*",
"unified": "^10.1.2",
"unist-util-visit": "^4.1.1"
},
"pnpm": {
"overrides": {
"@types/node": "18.7.23",
"@vitejs/plugin-react": "2.1.0",
"concurrently": "7.4.0",
"conventional-changelog-cli": "2.2.2",
"esno": "0.16.3",
"typescript": "4.7.4",
"unbuild": "0.8.11",
"vite": "3.0.9",
"vitest": "0.23.4",
"vue-demi": "0.13.11"
},
"allowedDeprecatedVersions": {
"stable": "*",
"core-js": "*",
"mkdirp": "*",
"uuid": "*",
"querystring": "*",
"sane": "*",
"chokidar": "*",
"fsevents": "*",
"source-map-resolve": "*",
"source-map-url": "*",
"resolve-url": "*",
"urix": "*",
"html-webpack-plugin": "*",
"@hapi/joi": "*",
"request": "*",
"@hapi/topo": "*",
"@hapi/bournes": "*",
"@hapi/address": "*",
"@hapi/hoek": "*",
"har-validator": "*",
"svgo": "*",
"@hapi/bourne": "*",
"w3c-hr-time": "*"
},
"packageExtensions": {
"vue-template-compiler": {
"devDependencies": {
"vue": "^2.6.14"
},
"peerDependencies": {
"vue": "^2.6.14"
}
}
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}