-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
65 lines (65 loc) · 2.04 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
{
"name": "root",
"private": true,
"scripts": {
"build": "turbo run build ",
"build:dev": "turbo run build:dev ",
"lint:root": "eslint --fix --resolve-plugins-relative-to ./ --ext .ts,.tsx,.jsx,.json,.vue ./resources/[dg]/",
"lint": "pnpm run lint:root --quiet",
"format": "turbo run format",
"format:staged": "lint-staged",
"db:push": "turbo run db:push",
"db:deploy": "turbo run db:deploy",
"prepare": "husky install"
},
"dependencies": {
"@citizenfx/client": "2.0.6643-1",
"@citizenfx/server": "2.0.6643-1",
"@jgoz/esbuild-plugin-typecheck": "^3.0.3",
"dayjs": "^1.11.9",
"esbuild-plugin-import-pattern": "^0.1.0",
"tsup": "^7.2.0",
"typescript": "^5.1.6",
"winston": "^3.10.0"
},
"devDependencies": {
"@sentry/integrations": "^7.64.0",
"@sentry/node": "^7.64.0",
"@sentry/tracing": "^7.64.0",
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^11.0.3",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-vue": "^9.17.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"prettier": "^3.0.1",
"turbo": "^1.10.12"
},
"lint-staged": {
"*.{ts,tsx,vue,json}": "eslint --fix --resolve-plugins-relative-to ./",
"*.{ts,tsx,scss,css,md,vue,json}": "prettier --write"
},
"workspaces": [
"resources/**",
"packages/*"
],
"prisma": {
"seed": "ts-node -P packages/db/tsconfig.json packages/db/seed.ts"
},
"version": "1.5.2",
"pnpm": {
"patchedDependencies": {
"@jgoz/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]"
}
}
}