-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 898 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 898 Bytes
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
{
"name": "experiences",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "oxlint",
"format": "prettier --write \"**/*.{ts,tsx,md,html}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,html}\"",
"check-types": "turbo run check-types",
"test": "turbo run test",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"oxlint",
"prettier --write"
],
"*.{md,html}": [
"prettier --write"
]
},
"devDependencies": {
"@types/node": "^25.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"oxlint": "^1.43.0",
"portless": "^0.4.0",
"prettier": "^3.7.4",
"turbo": "^2.8.3",
"typescript": "5.9.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@11.6.2",
"workspaces": [
"apps/*",
"examples/*",
"packages/*"
]
}