forked from Stuyk/rebar-altv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.21 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"author": "stuyk",
"type": "module",
"version": "42",
"scripts": {
"dev": "nodemon -x pnpm start",
"dev:linux": "nodemon -x pnpm start:linux",
"start": "node ./scripts/compile.js && altv-server",
"start:linux": "node ./scripts/compile.js && ./altv-server",
"build:docker": "node ./scripts/compile.js -- docker",
"binaries": "pnpm altv-pkg",
"rebar:upgrade": "node ./scripts/upgrade.js",
"webview:dev": "node ./scripts/buildPluginDependencies.js && node ./scripts/copyFiles.js && node ./scripts/webview.js && pnpm -C webview run dev",
"postinstall": "pnpm binaries && pnpm build:docker"
},
"devDependencies": {
"@altv/types-client": "^16.2.3",
"@altv/types-natives": "^16.2.0",
"@altv/types-server": "^16.2.1",
"@altv/types-shared": "^16.2.1",
"@altv/types-webview": "^16.2.1",
"@altv/types-worker": "^16.2.0",
"@types/node": "^20.14.9",
"altv-pkg": "^2.7.5",
"autoprefixer": "^10.4.19",
"fast-glob": "^3.3.2",
"fkill": "^9.0.0",
"nodemon": "^3.1.4",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.5.14",
"retypeapp": "^3.5.0",
"shx": "^0.3.4",
"sucrase": "^3.35.0",
"tailwindcss": "^3.4.4"
},
"dependencies": {
"@vitejs/plugin-vue": "^5.0.5",
"dotenv": "^16.4.5",
"mongodb": "^6.7.0",
"sjcl": "^1.0.8",
"typescript": "^5.5.2",
"vite": "^5.3.2",
"vue": "^3.4.30",
"vue-tsc": "^2.0.22"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true,
"semi": true,
"printWidth": 120,
"plugins": [
"prettier-plugin-tailwindcss"
]
},
"nodemonConfig": {
"verbose": false,
"ext": "ts, vue",
"watch": [
"./src",
"./webview"
],
"ignore": [
"webview/pages/*",
"webview/vite.config.*",
"*/package.json",
"*.mjs",
"ignore*.ts",
"autogen*.ts",
"webview/src/main.ts",
"src/scratchpad"
]
}
}