-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.43 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
{
"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",
"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:prod": "TEST_ENV=production npx playwright test",
"e2e:ui": "npm run e2e -- --ui",
"start:e2e": "lerna run start:e2e --scope=frontend",
"check:dependencies": "check-dependency-version-consistency . --dep-type=dependencies,peerDependencies,devDependencies"
},
"devDependencies": {
"@codecov/vite-plugin": "^2.0.1",
"@playwright/test": "^1.62.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.6",
"@types/jest": "^30.0.0",
"@types/node": "^26.4.0",
"@types/pngjs": "^6.0.5",
"@types/react": ">=18.0.0",
"@types/react-dom": ">=18.0.0",
"@vitejs/plugin-react": "^6.1.0",
"canvas": "^3.2.3",
"check-dependency-version-consistency": "^6.0.0",
"husky": "^9.1.7",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"jest-junit": "^17.0.0",
"lerna": "^10.0.1",
"pngjs": "^7.0.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"ts-jest": "^29.4.12",
"tsx": "^4.23.12",
"typescript": "^6.0.3",
"vite": "^8.2.2",
"vite-plugin-dts": "^5.0.3"
},
"resolutions": {
"yjs": "^13.6.32"
},
"packageManager": "yarn@1.22.22"
}