-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
135 lines (135 loc) · 4.4 KB
/
package.json
File metadata and controls
135 lines (135 loc) · 4.4 KB
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
125
126
127
128
129
130
131
132
133
134
135
{
"name": "oauth-foundation",
"version": "0.1.0",
"private": true,
"cacheDirectories": [
".next/cache"
],
"scripts": {
"build": "yarn ts-node ./scripts/buildProd",
"build:prisma": "prisma generate",
"build:next": "next build",
"db:migrate": "prisma migrate dev",
"db:migrate:prod": "prisma migrate deploy",
"db:deploy": "yarn prisma migrate deploy",
"db:reset": "yarn prisma migrate reset",
"db:reset:test": "yarn withEnv:test prisma migrate reset",
"db:seed": "yarn prisma db seed",
"db:seed:prod": "cross-env APP_ENV=production prisma db seed",
"db:setup": "yarn db:reset",
"dev": "next dev",
"dev:typecheck": "tsc --noEmit",
"g:cell": "hygen cell new --name",
"g:component": "hygen component new --name",
"g:trpc": "hygen trpc new --name",
"g:page": "hygen page new --name",
"g:test:component": "hygen test component --name",
"g:test:factory": "hygen test factory --name",
"g:test:request": "hygen test request --name",
"g:test:util": "hygen test util --name",
"g:e2e": "yarn playwright codegen",
"lint": "yarn eslint . --ext .ts,.tsx --ignore-pattern tmp",
"lint:fix": "yarn lint --fix",
"run:script": "yarn ts-node prisma/scripts/run.ts -f",
"setup": "yarn setup:dev && yarn setup:test",
"setup:dev": "yarn build:prisma && yarn db:deploy && yarn db:seed",
"setup:test": "yarn withEnv:test -- yarn db:deploy",
"start": "next start -p $PORT",
"test": "yarn withEnv:test jest --runInBand --watch",
"test:ci": "yarn withEnv:test jest --runInBand",
"test:db:migrate": "yarn withEnv:test prisma migrate dev",
"test:db:reset": "yarn withEnv:test prisma migrate reset --force",
"test:e2e": "yarn withEnv:test playwright test --workers 1",
"test:e2e:debug": "PWDEBUG=1 yarn test:e2e",
"ts-node": "ts-node-dev --project tsconfig.cjs.json -r tsconfig-paths/register",
"withEnv:test": "dotenv -c test --",
"watch:ts": "yarn dev:typecheck --watch"
},
"dependencies": {
"@chakra-ui/pro-theme": "^0.0.57",
"@chakra-ui/react": "^2.2.0",
"@chakra-ui/theme": "^2.1.0",
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"@next-auth/prisma-adapter": "^1.0.5",
"@nikolovlazar/chakra-ui-prose": "^1.2.1",
"@prisma/client": "^4.8.0",
"@tanstack/react-query": "^4.16.1",
"@tanstack/react-query-devtools": "^4.16.1",
"@trpc/client": "^10.0.0",
"@trpc/next": "^10.0.0",
"@trpc/react-query": "^10.0.0",
"@trpc/server": "^10.0.0",
"bcryptjs": "^2.4.3",
"cross-fetch": "3.0.5",
"framer-motion": "^8.5.0",
"i18next": "^22.0.6",
"i18next-http-backend": "^2.0.2",
"next": "13.2.4",
"next-auth": "^4.18.6",
"next-i18next": "^13.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.30.0",
"react-i18next": "^12.0.0",
"react-error-boundary": "^3.1.4",
"react-icons": "^4.6.0",
"superjson": "^1.10.0",
"universal-cookie": "^4.0.4",
"zod": "^3.19.1"
},
"devDependencies": {
"@playwright/test": "^1.27.1",
"@swc/jest": "^0.2.23",
"@testing-library/dom": "^8.1.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.2.1",
"@types/bcryptjs": "^2.4.2",
"@types/chance": "^1.1.3",
"@types/jest": "^26.0.6",
"@types/node": "^16.9.6",
"@types/pg": "^8.6.1",
"@types/react": "^18.0.14",
"@vercel/node": "^1.7.3",
"chance": "^1.1.8",
"commander": "^8.1.0",
"cross-env": "^7.0.3",
"dotenv-cli": "^6.0.0",
"eslint": "^8.18.0",
"eslint-config-next": "^12.1.6",
"eslint-plugin-echobind": "^0.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-playwright": "^0.11.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^4.2.5",
"hygen": "^6.0.4",
"jest": "^27.2.1",
"jest-environment-node": "^27.2.0",
"lint-staged": "^10.2.11",
"nanoid": "^3.1.10",
"pg": "^8.3.0",
"playwright": "^1.27.1",
"prettier": "^2.6.2",
"prisma": "^4.8.0",
"start-server-and-test": "^1.14.0",
"ts-jest": "^27.0.5",
"ts-node-dev": "^2.0.0-0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.2"
},
"bison": {
"version": "1.13.0-canary.14"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "yarn lint"
},
"prisma": {
"seed": "yarn ts-node prisma/seed.ts"
}
}