-
Notifications
You must be signed in to change notification settings - Fork 181
/
package.json
34 lines (34 loc) · 1004 Bytes
/
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
{
"name": "@modrinth/monorepo",
"version": "0.0.0",
"private": true,
"scripts": {
"web:dev": "turbo run dev --filter=@modrinth/frontend",
"web:build": "turbo run build --filter=@modrinth/frontend",
"app:dev": "turbo run dev --filter=@modrinth/app",
"docs:dev": "turbo run dev --filter=@modrinth/docs",
"app:build": "turbo run build --filter=@modrinth/app",
"pages:build": "NITRO_PRESET=cloudflare-pages pnpm --filter frontend run build",
"build": "turbo run build --continue",
"lint": "turbo run lint --continue",
"test": "turbo run test --continue",
"fix": "turbo run fix --continue"
},
"devDependencies": {
"prettier": "^3.3.2",
"turbo": "^2.2.3",
"vue": "^3.4.31"
},
"packageManager": "[email protected]",
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"endOfLine": "auto"
}
}