-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
56 lines (56 loc) · 1.59 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
{
"name": "open-collaboration-server-workspaces",
"private": true,
"type": "module",
"engineStrict": true,
"engines": {
"node": ">=20.10.0",
"npm": ">=10.2.3"
},
"scripts": {
"clean": "shx rm -rf packages/*/lib packages/*/out packages/*/bundle packages/*/*.tsbuildinfo",
"build": "tsc -b tsconfig.build.json && npm run build --workspaces",
"watch": "tsc -b tsconfig.build.json -w",
"build:clean": "npm run clean && npm run build",
"lint": "eslint",
"lint:fix": "eslint --fix",
"start": "npm run start --workspace=open-collaboration-server",
"test": "vitest",
"test-ui": "vitest --ui",
"coverage": "vitest run --coverage",
"reset:repo": "git clean -f -X -d",
"dev": "vite",
"dev:debug": "vite --debug --force"
},
"devDependencies": {
"@eslint/eslintrc": "~3.3.1",
"@eslint/js": "~9.24.0",
"@stylistic/eslint-plugin": "~4.2.0",
"@types/lodash": "~4.17.16",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "~8.29.1",
"@typescript-eslint/parser": "~8.29.1",
"@vitest/coverage-v8": "~3.1.1",
"@vitest/ui": "~3.1.1",
"concurrently": "~9.1.2",
"esbuild": "~0.25.2",
"editorconfig": "~2.0.1",
"eslint": "~9.24.0",
"eslint-plugin-header": "~3.1.1",
"eslint-plugin-import": "~2.31.0",
"eslint-plugin-unused-imports": "~4.1.4",
"shx": "~0.4.0",
"tsx": "~4.19.3",
"typescript": "~5.8.3",
"vite": "~6.2.6",
"vitest": "~3.1.1",
"postject": "~1.0.0-alpha.6"
},
"volta": {
"node": "22.14.0",
"npm": "10.9.2"
},
"workspaces": [
"packages/*"
]
}