-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.31 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
38
{
"name": "core",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"-----BUILD-----": "",
"build": "concurrently \"pnpm:build:*\"",
"build:client": "node --es-module-specifier-resolution=node scripts/client",
"build:server": "node --es-module-specifier-resolution=node scripts/server",
"build:webview": "cd web && pnpm build",
"-----DEV-----": "",
"dev": "concurrently \"pnpm:dev:client\" \"pnpm:dev:server\" \"pnpm:tsc\" \"pnpm:dev:webview\" -c \"green.bold,cyan.bold\"",
"dev:client": "node --es-module-specifier-resolution=node scripts/client -dev",
"dev:server": "node --es-module-specifier-resolution=node scripts/server -dev",
"dev:webview": "cd web && pnpm dev",
"-----TSC-----": "",
"tsc": "concurrently \"pnpm:tsc:*\" -c \"green.bold,cyan.bold\"",
"tsc:client": "cd game/client && npx tsc -w",
"tsc:server": "cd game/server && npx tsc -w"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@citizenfx/client": "2.0.9407-1",
"@citizenfx/server": "2.0.9407-1",
"@types/node": "^22.2.0",
"concurrently": "^8.2.2",
"esbuild": "^0.23.0",
"typescript": "^5.5.4"
},
"dependencies": {
"@overextended/ox_lib": "^3.24.0",
"@overextended/oxmysql": "^1.3.0"
}
}