forked from alitajs/alita
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.55 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
{
"name": "alita3",
"private": true,
"version": "3.0.0",
"scripts": {
"bootstrap": "umi-scripts bootstrap",
"build": "umi-scripts turbo --cmd build",
"build:client": "umi-scripts turbo --cmd build:client",
"build:extra": "umi-scripts turbo --cmd build:extra",
"build:force": "umi-scripts turbo --cmd build --no-cache",
"build:release": "umi-scripts turbo --cmd build --no-cache -- --declarationMap false",
"cov": "jest --coverage",
"cnpm": "pnpm i --registry=https://registry.npmmirror.com",
"ac:add": "all-contributors add",
"ac:g": "all-contributors generate",
"dep:update": "pnpm up --interactive --latest --recursive",
"dev": "umi-scripts turbo --cmd dev --parallel",
"doc:build": "umi build",
"doc:dev": "umi dev",
"format": "prettier --write .",
"format:docs": "prettier 'docs/**/*.{md,mdx}' --write --ignore-path .gitignore --ignore-unknown",
"format:plugin-docs": "prettier 'packages/plugin-docs/**/*' --write --ignore-unknown",
"preinstall": "npx only-allow pnpm",
"postinstall": "umi-scripts postinstall",
"jest": "jest",
"prepare": "husky install",
"release": "umi-scripts release",
"setup:webstorm": "umi-scripts setupWebStorm",
"synccnpm": "synccnpm",
"test": "jest",
"test:clean": "umi-scripts turbo --cmd test --no-cache --parallel -- --clearCache",
"test:e2e": "umi-scripts turbo --cmd test:e2e --filter @examples/*",
"tsc:check": "tsc --noEmit",
"turbo:clean": "rimraf .turbo",
"changeset": "esno scripts/changeset.ts",
"version-packages": "changeset version"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@manypkg/get-packages": "^1.1.3",
"@pnpm/lockfile-file": "^5.0.3",
"@pnpm/logger": "^4.0.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"@types/qrcode-terminal": "*",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@types/resolve": "^1.20.2",
"@types/rimraf": "3.0.2",
"@umijs/plugin-docs": "4.3.11",
"@umijs/utils": "4.3.11",
"@vercel/ncc": "0.33.3",
"start-server-and-test": "^1.15.3",
"all-contributors-cli": "^6.20.4",
"core-js": "3.19.2",
"dts-packer": "^0.0.3",
"esbuild-jest": "^0.5.0",
"esno": "^0.14.1",
"execa": "4.0.3",
"expect-playwright": "^0.8.0",
"git-repo-info": "^2.1.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-playwright-preset": "^1.7.0",
"lint-staged": "^12.3.7",
"matcher": "^5.0.0",
"only-allow": "^1.1.0",
"@playwright/test": "^1.41.2",
"prettier": "^2.6.2",
"prettier-plugin-organize-imports": "^2.3.4",
"prettier-plugin-packagejson": "^2.2.17",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-text-loop-next": "0.0.3",
"regenerator-runtime": "^0.13.9",
"resolve": "^1.22.0",
"rimraf": "^3.0.2",
"synccnpm": "^1.1.3",
"ts-node": "^10.7.0",
"turbo": "^1.3.1",
"typescript": "^4.7.2",
"uglify-js": "^3.15.4",
"umi": "4.3.11",
"umi-scripts": "workspace:*",
"yorkie": "^2.0.0",
"zx": "^7.2.0",
"vite": "^4.1.4",
"vitest": "^0.29.2"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "esno scripts/verifyCommit.ts"
},
"lint-staged": {
"*.{jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14",
"pnpm": ">=6.20.0"
},
"resolutions": {
"esbuild": "0.23.0"
}
}