-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.51 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
{
"name": "react-vite-trpc",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@8.6.5",
"engines": {
"node": "18.x"
},
"scripts": {
"start": "pnpm -F @react-vite-trpc/server start",
"pm2:start": "pnpm -F @react-vite-trpc/server pm2:start",
"pm2:delete": "pnpm -F @react-vite-trpc/server pm2:delete",
"pm2:logs": "pnpm -F @react-vite-trpc/server pm2:logs",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"stylelint": "turbo run stylelint",
"ts:check": "turbo run ts:check",
"check": "turbo run check",
"build": "turbo run build",
"build:lib": "turbo run build:lib",
"test:unit:run": "turbo run test:unit:run",
"test:integration:run": "turbo run test:integration:run",
"test:e2e:run": "turbo run test:e2e:run",
"test:coverage": "turbo run test:coverage",
"test:coverage:preview": "turbo run test:coverage:preview",
"cypress:install": "pnpm -F @react-vite-trpc/web cypress:install",
"postinstall": "pnpm build:lib"
},
"devDependencies": {
"@react-vite-trpc/eslint-config": "workspace:*",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/glob": "^8.1.0",
"eslint": "^8.46.0",
"glob": "^10.3.3",
"stylelint": "^15.10.2",
"ts-node": "^10.9.1",
"turbo": "^1.10.12",
"typescript": "^5.1.6",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.34.1",
"@swc/core": "^1.3.71"
}
}