-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 901 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 901 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
{
"name": "@repo/server",
"version": "1.0.0",
"private": true,
"type": "module",
"main": "src/app.ts",
"scripts": {
"dev": "tsx ./esbuild.ts",
"test": "vitest",
"build": "tsx ./esbuild.ts --build",
"tsc:app": "tsc --noEmit --project tsconfig.app.json",
"tsc:tools": "tsc --noEmit --project tsconfig.tools.json",
"tsc": "echo \"done\"",
"lint": "eslint . --config ../.eslintrc.json",
"lint:fix": "eslint . --config ../.eslintrc.json --fix",
"format": "prettier --check . --config ../.prettierrc --log-level warn",
"format:fix": "prettier --write . --config ../.prettierrc --log-level warn",
"clear": "rm -rf node_modules; rm -rf .turbo;"
},
"dependencies": {
"@repo/shared": "workspace:@repo/shared@*",
"@repo/assets": "workspace:@repo/assets@*",
"@repo/script": "workspace:@repo/script@*"
},
"devDependencies": {
"@repo/script": "workspace:@repo/script@*"
}
}