-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
37 lines (37 loc) · 1.03 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": "dundring",
"version": "0.1.0",
"description": "",
"author": "sivertschou",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"prepare": "husky && bash scripts/print_dundring.sh",
"dev": "FORCE_COLOR=1 turbo run dev",
"start": "FORCE_COLOR=1 turbo run dev",
"mock": "export VITE_USE_MOCK_DATA=true ; FORCE_COLOR=1 turbo run dev",
"build": "turbo run build",
"build:backend": "yarn --cwd apps/backend build",
"build:frontend": "yarn --cwd apps/frontend build",
"frontend": "yarn --cwd apps/frontend start",
"backend": "yarn --cwd apps/backend start",
"clean": "rm -rf node_modules */**/node_modules */**/.turbo */**/dist */**/build"
},
"devDependencies": {
"@prettier/plugin-xml": "^2.2.0",
"husky": "9.1.7",
"lint-staged": "^13.0.3",
"prettier": "3.2.5",
"turbo": "^2.3.0"
},
"workspaces": [
"libs/*",
"apps/*"
],
"lint-staged": {
"*.{ts,tsx,js,md,svg,html,json}": "prettier --write"
},
"engines": {
"node": ">=18.0.0"
}
}