This repository was archived by the owner on Nov 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
61 lines (61 loc) · 1.9 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
{
"private": true,
"workspaces": [
"packages/*"
],
"description": "A universal framework based on React",
"scripts": {
"prepare": "husky install",
"setup": "rm -rf node_modules packages/*/node_modules && pnpm install && pnpm run build",
"watch": "esmo ./scripts/watch.ts",
"build": "esmo ./scripts/build.ts",
"clean": "rimraf packages/*/esm",
"dependency:check": "esmo ./scripts/dependencyCheck.ts",
"version": "esmo ./scripts/tagVersion.ts",
"version:check": "esmo ./scripts/versionCheck.ts",
"lint:diff": "esmo ./scripts/lintDiff.ts",
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx ./",
"lint:fix": "npm run lint -- --fix",
"publish:alpha": "PUBLISH_TYPE=alpha esmo ./scripts/publishPackageWithDistTag.ts",
"test": "vitest run --coverage",
"test:watch": "vitest"
},
"author": "ice-admin@alibaba-inc.com",
"license": "MIT",
"repository": "ice-lab/ice-next",
"bugs": "https://github.com/ice-lab/ice-next/issues",
"homepage": "https://next.ice.work",
"devDependencies": {
"@applint/spec": "^1.0.1",
"@commitlint/cli": "^16.1.0",
"@types/eslint": "^8.4.1",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/node": "^17.0.13",
"@types/semver": "^7.3.9",
"build-scripts": "^2.0.0-15",
"c8": "^7.11.0",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"dependency-check": "^4.1.0",
"eslint": "^8.7.0",
"esno": "^0.14.0",
"execa": "^6.0.0",
"fs-extra": "^10.0.0",
"get-port": "^6.1.2",
"glob": "^7.2.0",
"husky": "^7.0.4",
"ice-npm-utils": "^3.0.1",
"prettier": "^2.5.1",
"prettier-plugin-organize-imports": "^2.3.4",
"prettier-plugin-packagejson": "^2.2.15",
"puppeteer": "^13.1.2",
"react": "^17.0.2",
"rimraf": "^3.0.2",
"semver": "^7.3.5",
"stylelint": "^14.3.0",
"typescript": "^4.5.5",
"vitest": "^0.8.4"
},
"packageManager": "pnpm"
}