-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
86 lines (86 loc) · 2.27 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
{
"name": "guild2.0",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start --inspect",
"lint": "next lint",
"prettier": "prettier --write .",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest --coverage",
"test:e2e": "playwright test",
"prepare": "husky install",
"postinstall": "prisma generate"
},
"dependencies": {
"@heroicons/react": "^1.0.6",
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^5.1.1",
"@types/node": "18.15.9",
"@types/nodemailer": "^6.4.9",
"@types/react": "18.0.29",
"@types/react-dom": "18.0.11",
"add": "^2.0.6",
"axios": "^1.3.6",
"date-fns": "^2.30.0",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"mathjs": "^11.8.0",
"next": "^13.4.19",
"next-auth": "^4.21.1",
"next-themes": "^0.2.1",
"nodemailer": "^6.9.4",
"pusher": "^5.1.3",
"pusher-js": "^8.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-draggable": "^4.4.5",
"react-dropzone": "^14.2.3",
"react-icons": "^4.9.0",
"react-infinite-scroll-component": "^6.1.0",
"stripe": "^12.18.0",
"swr": "^2.1.3",
"typescript": "5.0.2",
"yarn": "^1.22.19",
"zod": "^3.21.4",
"zustand": "^4.3.7"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.7",
"@playwright/test": "^1.36.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/axios": "^0.14.0",
"@types/bcrypt": "^5.0.0",
"@types/jest": "^29.5.0",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-c8": "^0.31.1",
"@vitest/ui": "^0.31.1",
"autoprefixer": "^10.4.14",
"bcrypt": "^5.1.0",
"eslint-plugin-storybook": "^0.6.11",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"prisma": "^4.11.0",
"tailwindcss": "^3.2.7",
"ts-jest": "^29.1.0",
"vitest": "^0.31.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"husky": {
"hooks": {
"commit-msg": "npm run commitmsg"
}
}
}