-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.48 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": "fivem-typescript-boilerplate",
"author": "Overextended",
"version": "0.0.0",
"license": "",
"description": "",
"type": "module",
"scripts": {
"web:dev": "cd web && vite dev",
"build": "node scripts/build.js",
"watch": "node scripts/build.js --watch",
"prettier": "prettier ./{src,web}/**/*.{ts,tsx} --write",
"eslint": "eslint ./{src,web}/**/*.{ts,tsx}"
},
"keywords": [
"fivem"
],
"repository": {
"type": "git",
"url": "https://github.com/overextended/fivem-typescript-boilerplate.git"
},
"bugs": "https://github.com/overextended/fivem-typescript-boilerplate/issues",
"devDependencies": {
"@citizenfx/client": "latest",
"@citizenfx/server": "latest",
"@eslint/js": "^9.9.0",
"@overextended/fx-utils": "^0.0.4",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.16.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"@vitejs/plugin-react": "^4.3.1",
"esbuild": "^0.23.1",
"eslint": "^9.9.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.9",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0",
"vite": "^5.4.1"
},
"dependencies": {
"@jgoz/esbuild-plugin-typecheck": "^4.0.1",
"@nativewrappers/fivem": "latest",
"@overextended/ox_lib": "latest",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}