-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 763 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 763 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
29
30
31
32
33
34
{
"name": "mini-dig",
"version": "1.0.0",
"description": "",
"main": "index.js",
"workspaces": [
"client",
"server",
"shared"
],
"scripts": {
"dev": "concurrently \"npm --prefix client run dev\" \"npm --prefix server run dev\"",
"build": "npm --prefix client run build && npm --prefix server run build",
"start": "npm --prefix server run start",
"lint": "eslint"
},
"author": "",
"license": "ISC",
"dependencies": {
"@luminight/ecs": "^1.0.3"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"eslint": "^9.15.0",
"eslint-plugin-jsdoc": "^50.5.0",
"globals": "^15.12.0",
"vite": "^5.2.11",
"concurrently": "^9.1.0"
},
"type": "module",
"engines": {
"node": "21.x.x"
}
}