-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
62 lines (62 loc) · 2.16 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
{
"author": "stuyk",
"type": "module",
"version": "53",
"scripts": {
"dev": "nodemon --config ./nodemon-dev.json -x pnpm start",
"dev:linux": "nodemon --config ./nodemon-dev.json -x pnpm start:linux",
"start": "node ./scripts/compile.js && altv-server",
"start:linux": "node ./scripts/compile.js && ./altv-server",
"dev:hot": "pnpm build:docker && concurrently --raw \"nodemon -C --config ./nodemon-hot.json -x pnpm build:docker\" \"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.6",
"@altv/types-natives": "^16.2.1",
"@altv/types-server": "^16.2.4",
"@altv/types-shared": "^16.2.3",
"@altv/types-webview": "^16.2.1",
"@altv/types-worker": "^16.2.0",
"@types/node": "^20.16.4",
"altv-pkg": "^2.7.5",
"autoprefixer": "^10.4.20",
"fast-glob": "^3.3.2",
"fkill": "^9.0.0",
"nodemon": "^3.1.4",
"postcss": "^8.4.45",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.5.14",
"retypeapp": "^3.5.0",
"shx": "^0.3.4",
"sucrase": "^3.35.0",
"tailwindcss": "^3.4.10"
},
"dependencies": {
"@hono/node-server": "^1.12.2",
"@types/sjcl": "^1.0.34",
"@vitejs/plugin-vue": "^5.1.3",
"concurrently": "^8.2.2",
"dotenv": "^16.4.5",
"hono": "^4.5.11",
"mongodb": "^6.8.0",
"node-cron": "^3.0.3",
"sjcl": "^1.0.8",
"typescript": "^5.5.4",
"vite": "^5.4.3",
"vue": "^3.5.1",
"vue-tsc": "^2.1.4"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true,
"semi": true,
"printWidth": 120,
"plugins": [
"prettier-plugin-tailwindcss"
]
}
}