-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.94 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
{
"name": "upwork-job-filter",
"private": true,
"scripts": {
"sync": "nx exec -- nuxt prepare",
"dev": "nx exec -- nuxt dev",
"build": "nx exec -- nuxt build",
"preview": "nx exec -- nuxt preview",
"typecheck": "nx exec -- nuxt typecheck",
"lint": "nx exec -- eslint --max-warnings 0 .",
"fmt": "nx exec -- prettier --write .",
"fmtcheck": "nx exec -- prettier --list-different .",
"precommit": "pnpm run fmt && pnpm run lint --fix",
"precommitcheck": "nx run-many -t=fmtcheck,lint,typecheck,build --parallel=4",
"migration": "nx exec -- drizzle-kit generate:mysql --schema=./server/drizzle/schema.ts --out=./server/drizzle/migrations",
"postinstall": "pnpm run sync",
"stop": "pm2 stop upworkjobfilter || true && rm -rf .output/tmp",
"start": "nx exec -- pm2 start"
},
"devDependencies": {
"@antfu/eslint-config": "^0.43.1",
"@element-plus/nuxt": "^1.0.6",
"@nuxt/devtools": "latest",
"@nuxtjs/color-mode": "^3.3.0",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/tailwindcss": "^6.8.0",
"@trpc/client": "^10.38.4",
"@trpc/server": "^10.38.4",
"@types/node": "^20",
"@vite-pwa/nuxt": "^0.1.1",
"@vueuse/nuxt": "^10.4.1",
"drizzle-kit": "^0.19.13",
"drizzle-orm": "^0.28.6",
"drizzle-zod": "^0.5.1",
"element-plus": "^2.3.14",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"mysql2": "^3.6.1",
"nuxt": "^3.7.0",
"nuxt-scheduler": "^0.1.9",
"nx": "^16.9.0",
"pm2": "^5.3.0",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"puppeteer": "^21.3.4",
"superjson": "^1.13.1",
"trpc-nuxt": "^0.10.12",
"typescript": "^5.2.2",
"ufo": "^1.3.0",
"vue-tsc": "^1.8.13",
"web-push": "^3.6.6",
"workbox-core": "^7.0.0",
"zod": "^3.22.2"
},
"nx": {
"targets": {
"build": {
"outputs": [
"{projectRoot}/.output"
]
}
}
}
}