-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.12 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
{
"name": "@examples/next-starter",
"version": "9.23.6",
"private": true,
"scripts": {
"build:1-migrate": "prisma migrate deploy",
"build:2-build": "next build",
"build": "run-s build:*",
"db-up": "docker-compose up -d",
"db-seed": "prisma db seed",
"db-migrate-dev": "yarn prisma migrate dev",
"db-nuke": "docker-compose down --volumes --remove-orphans",
"dev": "next dev",
"dx": "run-s db-up db-migrate-dev db-seed dev",
"start": "next start",
"lint": "eslint src",
"lint-fix": "yarn lint --fix",
"test-dev": "start-server-and-test dev 3000 test",
"test-start": "start-server-and-test start 3000 test",
"test": "run-s test:*",
"test:unit": "jest",
"test:e2e": "playwright test",
"ts-node": "ts-node --compiler-options \"{\\\"module\\\":\\\"commonjs\\\"}\"",
"postinstall": "prisma generate"
},
"prisma": {
"seed": "yarn ts-node prisma/seed.ts"
},
"prettier": {
"printWidth": 80,
"trailingComma": "all",
"singleQuote": true
},
"dependencies": {
"@prisma/client": "^3.0.1",
"@trpc/client": "^9.23.6",
"@trpc/next": "^9.23.6",
"@trpc/react": "^9.23.6",
"@trpc/server": "^9.23.6",
"clsx": "^1.1.1",
"next": "^12.1.6",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-query": "^3.37.0",
"start-server-and-test": "^1.12.0",
"superjson": "^1.9.1",
"zod": "^3.0.0"
},
"devDependencies": {
"@playwright/test": "^1.19.2",
"@types/jest": "^27.0.1",
"@types/node": "^17.0.10",
"@types/react": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^7.32.0",
"eslint-config-next": "^12.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.1.0",
"npm-run-all": "^4.1.5",
"playwright": "^1.19.1",
"prettier": "^2.5.1",
"prisma": "^3.7.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.3.0",
"typescript": "4.4.4"
},
"publishConfig": {
"access": "restricted"
}
}