forked from Byte-Labs-Studio/bl_appearance
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 809 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 809 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
{
"name": "bl_appearance",
"version": "1.0.0",
"type": "module",
"description": "",
"fivemIgnore": true,
"main": "index.js",
"scripts": {
"build": "pnpm run init && pnpm run build-web",
"build-web": "cd ./web && pnpm run build",
"dev": "concurrently \"pnpm:init -dev\" \"pnpm:dev-web\" -c \"green.bold,cyan.bold\"",
"init": "rimraf ./dist && node ./src/build",
"dev-web": "cd ./web && pnpm run dev"
},
"keywords": [],
"author": "Byte Labs",
"license": "ISC",
"devDependencies": {
"@citizenfx/client": "2.0.7827-1",
"@citizenfx/server": "2.0.7827-1",
"@types/node": "^20.12.5",
"concurrently": "^8.2.2",
"esbuild": "^0.20.2",
"rimraf": "^5.0.5",
"typescript": "^5.4.4"
},
"dependencies": {
"@overextended/oxmysql": "^1.3.0"
}
}