forked from alibaba/ice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.34 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
{
"name": "ice-monorepo",
"private": true,
"description": "A universal framework based on React",
"author": "[email protected]",
"license": "MIT",
"homepage": "https://v3.ice.work",
"repository": "ice-lab/ice-next",
"bugs": "https://github.com/ice-lab/ice-next/issues",
"scripts": {
"prepare": "husky install",
"setup": "rm -rf node_modules packages/*/node_modules && pnpm install && pnpm prebundle && pnpm build",
"rebuild": "pnpm install && pnpm run build",
"watch": "pnpm --parallel --filter=./packages/* run watch",
"build": "pnpm run clean && pnpm -r --filter=./packages/* run build",
"prebundle": "cd packages/bundles && pnpm build",
"clean": "rimraf packages/*/esm",
"dependency:check": "tsx ./scripts/dependencyCheck.ts",
"version": "tsx ./scripts/tagVersion.ts",
"version:check": "tsx ./scripts/versionCheck.ts",
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx ./",
"publish": "tsx ./scripts/publishPackage.ts",
"publish:beta": "PUBLISH_TYPE=beta tsx ./scripts/publishPackageWithDistTag.ts",
"publish:release": "PUBLISH_TYPE=release VERSION_PREFIX=rc tsx ./scripts/publishPackageWithDistTag.ts",
"cov": "vitest run --coverage",
"test": "vitest"
},
"devDependencies": {
"@applint/spec": "^1.2.3",
"@commitlint/cli": "^16.3.0",
"@ice/bundles": "workspace:^0.1.0",
"@testing-library/react": "^13.3.0",
"@types/eslint": "^8.4.5",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/node": "^17.0.45",
"@types/semver": "^7.3.12",
"@vercel/ncc": "^0.33.4",
"@vitest/coverage-c8": "^0.23.1",
"c8": "^7.12.0",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"dependency-check": "^4.1.0",
"dts-bundle": "^0.7.3",
"eslint": "^8.22.0",
"execa": "^6.1.0",
"find-up": "^5.0.0",
"fs-extra": "^10.1.0",
"get-port": "^6.1.2",
"glob": "^7.2.3",
"husky": "^7.0.4",
"ice-npm-utils": "^3.0.2",
"jsdom": "^20.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"puppeteer": "^19.6.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"semver": "^7.3.7",
"stylelint": "^14.10.0",
"tsx": "^3.12.1",
"typescript": "^4.7.4",
"vitest": "^0.15.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
},
"packageManager": "[email protected]"
}