forked from Stuyk/altv-athena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.59 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
{
"name": "altv-athena",
"version": "5.1.0",
"description": "a roleplay framework for alt:V",
"author": "stuyk",
"type": "module",
"scripts": {
"[-] Server Deployment Commands (They All Do Different Things)": "",
"windows": "node ./scripts/runtime/index.js --start",
"linux": "node ./scripts/runtime/index.js --start",
"devtest": "node ./scripts/runtime/index.js --start --devtest",
"dev": "node ./scripts/runtime/index.js --start --dev",
"cdn": "node ./scripts/runtime/index.js --start --cdn",
"[-] Updating, Installing, Cleanup": "",
"update": "npx altv-pkg d release",
"check": "tsc -p ./tsconfig.json | node ./scripts/fileChecker/index.js",
"fix": "node ./scripts/doctor/index.js",
"[-] Vue WebView Deployment": "",
"vue-dev": "node ./scripts/plugins/webview && node ./scripts/plugins/files && npx vite ./src-webviews --clearScreen=false --host=localhost --port=3000",
"[-] Utility": "",
"docs": "npx typedoc --options ./src/core/typedoc.json && node ./scripts/documentation/index.js",
"fix-natives": "node ./scripts/natives-upgrade/index.js",
"test": ""
},
"devDependencies": {
"@altv/types-client": "^2.6.3",
"@altv/types-natives": "^1.5.3",
"@altv/types-server": "^2.7.3",
"@altv/types-shared": "^1.4.8",
"@altv/types-webview": "^1.0.5",
"@altv/types-worker": "1.0.7",
"@babel/types": "^7.17.0",
"@stuyk/altv-config": "^4.0.1",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.40",
"@types/glob": "^7.2.0",
"@types/minimatch": "^3.0.5",
"@types/node": "^14.6.1",
"@types/sockjs": "^0.3.33",
"@types/sockjs-client": "^1.5.1",
"altv-pkg": "^2.0.11",
"fkill": "^8.0.1",
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"prettier": "^2.6.2",
"stylus": "^0.58.1",
"typescript": "4.6.3",
"vite": "^4.2.0",
"vite-plugin-monaco-editor": "^1.1.0",
"vue": "^3.2.47"
},
"dependencies": {
"@stuyk/ezmongodb": "3.0.0",
"@vitejs/plugin-vue": "^4.1.0",
"axios": "0.26.1",
"bip39": "^3.1.0",
"elliptic": "6.5.4",
"njwt": "^1.2.0",
"sjcl": "1.0.8",
"sockjs": "0.3.21",
"sockjs-client": "1.5.2"
},
"prettier": {
"tabWidth": 4,
"printWidth": 120,
"singleQuote": true,
"semi": true,
"arrowParens": "always",
"trailingComma": "all"
},
"engines": {
"node": ">=18.0.0"
}
}