-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 995 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
{
"name": "root",
"version": "0.0.0",
"license": "MIT",
"workspaces": [
"packages/*"
],
"private": true,
"scripts": {
"watch": "lerna run watch",
"build": "lerna run build",
"dev": "yarn run dev:client",
"dev:mp": "concurrently --names 'SERVER,CLIENT' --prefix-colors 'green,blue' --kill-others 'yarn run dev:server' 'VITE_APP_IS_MULTIPLAYER=true yarn run dev:client'",
"dev:client": "lerna --scope @acid-info/webcave-example-frontend run dev",
"dev:server": "lerna --scope @acid-info/webcave-server run dev",
"start:client": "lerna --scope @acid-info/webcave-example-frontend run preview",
"start:server": "lerna --scope @acid-info/webcave-server run serve",
"prettier": "pretty-quick",
"lint": "pretty-quick --check"
},
"devDependencies": {
"concurrently": "^8.2.2",
"lerna": "^8.1.3",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"typescript": "5.4.5"
},
"publishConfig": {
"access": "public"
}
}