-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
124 lines (124 loc) · 3.92 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "rpg-party-inventory",
"version": "1.9.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "stmux --error=\"\" --mouse -- [ -t next -s 2/3 \"yarn start:dev\" .. -t db \"yarn dev-db:start\" ]",
"build": "next build",
"start": "next start",
"start:dev": "next dev",
"analyze-bundle": "ANALYZE=true yarn build",
"dev-db:wait": "wait-on tcp:5432 && delay 0.4",
"dev-db:run": "docker-compose up",
"dev-db:start": "concurrently \"yarn dev-db:run\" \"yarn dev-db:wait && yarn prisma migrate dev --skip-generate\"",
"dev-db:reset": "docker-compose down --rmi all --volumes",
"dev-db:studio": "yarn prisma studio",
"test:normal": "playwright test --project=normal",
"test:maintenance-mode": "dotenv -e .env.maintenance -- playwright test --project=maintenance",
"test": "yarn test:normal && yarn test:maintenance-mode",
"commit": "git cz",
"check-types": "tsc --noEmit",
"lint": "eslint src tests scripts",
"prepare": "husky install",
"postinstall": "test -n \"$SKIP_PRISMA_GEN\" || prisma generate",
"clean-deps": "yarn flush-deps && yarn",
"flush-deps": "npx rimraf node_modules",
"ci": "yarn install --freeze-lockfile",
"ci:no-prisma-gen": "SKIP_PRISMA_GEN=true yarn ci",
"gen:pwa": "ts-node scripts/generatePwaAssets.ts"
},
"dependencies": {
"@chakra-ui/react": "^2.7.0",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^4.2.2",
"@hookform/resolvers": "^2.9.8",
"@mobily/ts-belt": "^3.13.1",
"@prisma/client": "4.3.1",
"@tanstack/react-query": "^4.29.12",
"@trpc/client": "^10.28.2",
"@trpc/next": "^10.28.2",
"@trpc/react-query": "^10.28.2",
"@trpc/server": "^10.28.2",
"@vercel/analytics": "^1.0.1",
"big.js": "^6.1.1",
"chakra-ui-ionicons": "^0.3.3",
"date-fns": "^2.19.0",
"framer-motion": "^10.12.16",
"immer": "^9.0.6",
"jotai": "^2.1.1",
"jotai-location": "^0.5.1",
"next": "^12.3.1",
"next-superjson": "^0.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.36.1",
"superjson": "^1.10.0",
"ts-pattern": "^4.0.5",
"type-fest": "^3.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@emotion/react": "^11.11.1",
"@next/bundle-analyzer": "^14.0.3",
"@next/eslint-plugin-next": "^13.4.5",
"@playwright/test": "^1.20.1",
"@testing-library/dom": "^7.30.3",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@testing-library/react-hooks": "^7.0.1",
"@testing-library/user-event": "^13.1.1",
"@types/big.js": "^6.1.0",
"@types/conventional-changelog-config-spec": "^2.1.0",
"@types/faker": "^5.1.7",
"@types/is-ci": "^3.0.0",
"@types/jest": "^27.0.1",
"@types/next-pwa": "^5.6.4",
"@types/node": "^18.0.0",
"@types/react": "^18.2.7",
"@types/serve-handler": "^6.1.1",
"@types/wait-on": "^5.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.5",
"cmd-ts": "^0.12.1",
"commitizen": "^4.2.4",
"commitlint": "^13.1.0",
"concurrently": "^7.4.0",
"delay-cli": "^2.0.0",
"dotenv": "^16.0.2",
"dotenv-cli": "^6.0.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-playwright": "^0.12.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"faker": "^5.4.0",
"git-cz": "^4.7.6",
"husky": "^7.0.0",
"is-ci": "^3.0.1",
"jest": "^27.1.1",
"jest-compact-reporter": "^1.2.9",
"jest-dom": "^4.0.0",
"jest-extended": "^0.11.5",
"jotai-devtools": "^0.5.3",
"lint-staged": "^13.2.2",
"next-pwa": "^5.6.0",
"next-transpile-modules": "^10.0.0",
"ora": "5.4.1",
"prettier": "^2.8.8",
"prisma": "4.3.1",
"pwa-asset-generator": "^6.3.1",
"serve-handler": "^6.1.5",
"stmux": "^1.8.4",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^5.1.3",
"wait-on": "^6.0.1",
"zod-prisma": "^0.5.4"
}
}