-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.97 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.97 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
{
"name": "code-editor",
"private": true,
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"build:client": "turbo build --filter=client...",
"build:server": "turbo build --filter=server...",
"build:server:render": "pnpm --filter ./packages/types build && pnpm --filter ./apps/server build",
"start:server": "node apps/server/dist/index.js",
"start:server:render": "node apps/server/dist/index.js",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"format": "prettier --check **/*.{js,mjs,jsx,ts,tsx,json}",
"format:fix": "prettier --write **/*.{js,mjs,jsx,ts,tsx,json}",
"test:client": "turbo test:e2e",
"test:client:ui": "turbo test:e2e:ui",
"test:client:debug": "turbo test:e2e:debug",
"test:client:report": "turbo test:e2e:report",
"test:server": "turbo test:socket",
"test:server:remote": "turbo test:socket:remote",
"test:server:watch": "turbo test:watch",
"clean": "node scripts/clean.js",
"prepare": "husky"
},
"lint-staged": {
"**/*.{js,mjs,jsx,ts,tsx,json}": [
"pnpm format:fix"
],
"apps/client/**/*.{js,mjs,jsx,ts,tsx,json}": [
"pnpm --filter=client lint:fix"
]
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@prettier/plugin-oxc": "^0.0.4",
"@types/simple-peer": "^9.11.9",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.8.1",
"prettier-plugin-classnames": "^0.7.9",
"prettier-plugin-ember-template-tag": "^2.1.3",
"prettier-plugin-merge": "^0.7.4",
"prettier-plugin-tailwindcss": "^0.6.14",
"rimraf": "^6.1.2",
"turbo": "^2.8.8",
"typescript": "^5.9.3"
},
"optionalDependencies": {
"bufferutil": "^4.1.0",
"utf-8-validate": "^6.0.6"
},
"packageManager": "pnpm@9.15.4",
"pnpm": {
"patchedDependencies": {
"monaco-themes": "patches/monaco-themes.patch"
}
}
}