-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 1.14 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
{
"name": "torpleng-anisong",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@8.9.0",
"engines": {
"pnpm": ">=8",
"node": "^18.12.0"
},
"scripts": {
"dev": "turbo run dev --parallel",
"dev:client": "turbo run dev --filter=\"./apps/client\"",
"dev:server": "turbo run dev --filter=\"./apps/server\"",
"build": "turbo run build",
"build:client": "turbo run build --filter=\"./apps/client\"",
"build:server": "turbo run build --filter=\"./apps/server\"",
"start": "turbo run start",
"start:client": "turbo run build --filter=\"./apps/client\"",
"start:server": "turbo run build --filter=\"./apps/server\"",
"lint": "eslint \"**/*.{ts,tsx}\"",
"fmt:check": "prettier --check \"**/*.{ts,tsx,md}\"",
"fmt": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "vitest --run"
},
"dependencies": {
"turbo": "1.10.15"
},
"devDependencies": {
"@typescript-eslint/parser": "6.7.5",
"eslint": "8.51.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-solid": "0.13.0",
"prettier": "3.0.3",
"typescript": "5.2.2"
}
}