-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 838 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 838 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
{
"packageManager": "yarn@4.0.2",
"private": true,
"workspaces": [
"vgc-tools",
"backend",
"frontend"
],
"scripts": {
"lint": "eslint --ext .js,.ts,.vue ./",
"format": "prettier --write \"**/*.{js,ts,vue,scss,html,md,json}\" --ignore-path .gitignore",
"dev": "concurrently 'yarn workspace vgc-tools dev' 'npm:dev:api' 'yarn workspace vgc dev'",
"dev:api": "yarn workspace vgc-api dev",
"build": "yarn workspace vgc-tools build && yarn workspace vgc-api build && yarn workspace vgc build"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"concurrently": "^8.2.2",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.28.0",
"globals": "^15.9.0",
"prettier": "^3.3.3"
}
}