-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.44 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.44 KB
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
{
"name": "excel",
"version": "0.0.1",
"private": true,
"description": "Online Collaboration Excel",
"author": "Steve Xu <stevexugc@gmail.com>",
"bugs": "https://github.com/nusr/excel/issues",
"homepage": "https://github.com/nusr/excel",
"repository": "git+https://github.com/nusr/excel.git",
"license": "MIT",
"workspaces": [
"packages/*",
"packages/demo/*"
],
"scripts": {
"start": "lerna run start",
"type-check": "lerna run type-check",
"build": "lerna run build",
"test": "lerna run test",
"test:ci": "lerna run test:ci",
"coverage": "lerna run test:ci -- --coverage",
"lint": "npx oxlint@latest --fix",
"prepare": "husky && npm run build",
"repeat": "jscpd --ignore \"**/*.test.tsx,**/*.test.ts\" --reporters html --mode strict --min-lines 7 --blame --gitignore --exitCode 1 .",
"install-font": "mkdir -p $HOME/.fonts && cp ./scripts/SourceCodePro-VariableFont_wght.ttf $HOME/.fonts/ && fc-cache -fv $HOME/.fonts",
"release:major": "lerna version major --conventional-commits --no-private --no-push --yes --no-git-tag-version",
"release:minor": "lerna version minor --conventional-commits --no-private --no-push --yes --no-git-tag-version",
"release:patch": "lerna version patch --conventional-commits --no-private --no-push --yes --no-git-tag-version",
"e2e": "playwright test",
"e2e:ui": "npm run e2e -- --ui",
"start:e2e": "lerna run start:e2e --scope=frontend"
},
"devDependencies": {
"@codecov/vite-plugin": "^1.9.1",
"@playwright/test": "^1.58.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"@types/pngjs": "^6.0.5",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"canvas": "^3.2.1",
"husky": "^9.1.7",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jest-junit": "^16.0.0",
"lerna": "^9.0.7",
"pngjs": "^7.0.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"ts-jest": "^29.4.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^8.0.0",
"vite-plugin-dts": "^4.5.4"
},
"resolutions": {
"tar": "^7.5.11",
"@isaacs/brace-expansion": "^5.0.1",
"axios": "^1.13.6",
"ajv": "^8.18.0",
"undici": "^7.24.4"
},
"packageManager": "yarn@1.22.22"
}