This repository has been archived by the owner on May 11, 2024. It is now read-only.
generated from Stuyk/altv-typescript
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.61 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
{
"name": "altv-quickstart-ts",
"version": "5.0.1",
"description": "TypeScript with alt:V Made Easy",
"scripts": {
"[-] Server Deployment Commands (They All Do Different Things)": "",
"build": "node ./scripts/compiler.js && npx vite build ./src-webviews && node ./scripts/copy.js && node ./scripts/transform.js",
"windows": "npm run build && altv-server.exe",
"linux": "npm run build && ./altv-server",
"dev": "node ./scripts/watch.js",
"[-] Utility": "",
"react-dev": "npx vite ./src-webviews --clearScreen=false --host=localhost --port=3000",
"update": "altv-pkg d release"
},
"author": "stuyk",
"license": "ISC",
"devDependencies": {
"@altv/types-client": "^2.5.3",
"@altv/types-natives": "^1.5.3",
"@altv/types-server": "^2.6.6",
"@altv/types-shared": "^1.4.2",
"@altv/types-webview": "^1.0.5",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.52",
"@types/node": "^18.15.11",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react-swc": "^3.0.0",
"altv-pkg": "^2.0.11",
"fs-extra": "^11.1.1",
"glob": "^10.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "latest",
"watcher": "^2.2.2"
},
"prettier": {
"tabWidth": 4,
"semi": true,
"printWidth": 120,
"arrowParens": "always",
"singleQuote": true
},
"type": "module",
"dependencies": {
"vite": "^4.3.1"
},
"engines": {
"node": ">=18"
}
}