-
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) · 1.02 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.02 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
{
"name": "monocr",
"private": true,
"packageManager": "pnpm@10.25.0",
"scripts": {
"predev": "node scripts/validate-env.mjs",
"dev": "turbo run dev",
"dev:all": "turbo run dev --parallel",
"prebuild": "node scripts/validate-env.mjs",
"build": "turbo run build",
"lint": "turbo run lint",
"lint:all": "turbo run lint",
"test": "turbo run test",
"test:all": "turbo run test",
"format": "turbo run format",
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"translate": "node shared/locales/sync.mjs"
},
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"esbuild",
"workerd"
],
"overrides": {
"seroval": "^1.4.1",
"cookie": "^0.7.0",
"sha.js": "^2.4.12",
"solid-js": "^1.9.4",
"devalue": "^5.3.2",
"axios": "^1.13.5"
},
"ignoredBuiltDependencies": [
"protobufjs"
]
},
"devDependencies": {
"turbo": "^2.1.2",
"googleapis": "^144.0.0",
"dotenv": "^16.4.5"
}
}