-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.1 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
{
"name": "webhook-er",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix .",
"temp-database-up": "docker-compose up -d",
"temp-database-down": "docker-compose down",
"generate-migration": "drizzle-kit generate:pg",
"migrate": "drizzle-kit push:pg",
"test:int": "IS_INTEGRATION_TEST=true jest --config jest/integrationTests.config.json --forceExit",
"test:unit": "jest --config jest/unitTests.config.json"
},
"dependencies": {
"@tanstack/react-query": "^4.35.3",
"@trpc/client": "^10.38.3",
"@trpc/next": "^10.38.3",
"@trpc/react-query": "^10.38.3",
"@trpc/server": "^10.38.3",
"autoprefixer": "10.4.15",
"axios": "^1.5.0",
"clipboard": "^2.0.11",
"drizzle-orm": "^0.28.6",
"drizzle-zod": "^0.5.1",
"envalid": "^7.3.1",
"next": "13.4.19",
"pg": "^8.11.3",
"postcss": "8.4.29",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-icons": "^4.11.0",
"react-syntax-highlighter": "^15.5.0",
"react-toastify": "^9.1.3",
"tailwindcss": "3.3.3",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "20.6.0",
"@types/pg": "^8.10.2",
"@types/react": "18.2.21",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "18.2.7",
"@types/react-syntax-highlighter": "^15.5.7",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"@typescript-eslint/typescript-estree": "^5.46.0",
"dotenv": "^16.3.1",
"drizzle-kit": "^0.19.13",
"eslint": "^8.49.0",
"eslint-config-next": "13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.1",
"prettier": "^3.0.3",
"ts-jest": "^29.0.3",
"typescript": "5.2.2"
}
}