-
-
Notifications
You must be signed in to change notification settings - Fork 619
/
package.json
80 lines (80 loc) · 2.82 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
{
"name": "univer",
"type": "module",
"version": "0.5.0-alpha.0",
"private": true,
"packageManager": "[email protected]",
"author": "DreamNum Inc. <[email protected]>",
"license": "Apache-2.0",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/univer"
},
"homepage": "https://univer.ai",
"repository": {
"type": "git",
"url": "https://github.com/dream-num/univer"
},
"bugs": {
"url": "https://github.com/dream-num/univer/issues"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.5.0 || >=9.0.0"
},
"scripts": {
"prepare": "husky install",
"pre-commit": "lint-staged",
"dev": "turbo dev:demo",
"dev:e2e": "pnpm --filter univer-examples dev:e2e",
"lint:types": "turbo lint:types",
"test": "turbo test -- --passWithNoTests",
"coverage": "turbo coverage -- --passWithNoTests",
"build": "turbo build --no-cache --concurrency=30% --filter=!./common/*",
"build:ci": "turbo build --concurrency=100% --filter=!./common/*",
"build:demo": "pnpm --filter univer-examples build:demo",
"build:e2e": "pnpm --filter univer-examples build:e2e",
"serve:e2e": "serve ./examples/local",
"test:e2e": "playwright test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"storybook:dev": "pnpm --filter @univerjs/storybook dev:storybook",
"storybook:build": "pnpm --filter @univerjs/storybook build:storybook",
"release": "release-it"
},
"devDependencies": {
"@antfu/eslint-config": "3.8.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint-react/eslint-plugin": "^1.15.2",
"@playwright/test": "^1.48.0",
"@release-it-plugins/workspaces": "^4.2.0",
"@release-it/conventional-changelog": "^9.0.2",
"@storybook/react": "8.3.5",
"@types/node": "^22.8.4",
"@types/react": "^18.3.12",
"@univerjs-infra/shared": "workspace:*",
"@univerjs/design": "workspace:*",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "9.13.0",
"eslint-plugin-format": "^0.1.2",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-no-barrel-import": "^0.0.2",
"eslint-plugin-no-penetrating-import": "^0.0.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"react": "18.3.1",
"react-dom": "18.3.1",
"release-it": "^17.10.0",
"serve": "^14.2.4",
"tsx": "^4.19.2",
"turbo": "^2.2.3",
"typescript": "^5.6.3"
},
"lint-staged": {
"*": "eslint --fix"
}
}