-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.75 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
{
"name": "event-app",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18.0.0 <19.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit --incremental",
"lint": "eslint './src/**/*.{js,ts,tsx}' --cache",
"db:migrate": "knex migrate:latest",
"db:seed": "knex seed:run",
"db:setup": "npm run db:migrate && npm run db:seed",
"format:check": "prettier --check './src/**/*.{ts,tsx}' './migrations/*.js'",
"format:write": "prettier --write './src/**/*.{ts,tsx}' './migrations/*.js'",
"prepare": "husky install",
"test": "vitest --run",
"test:watch": "vitest --watch"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"autoprefixer": "10.4.16",
"jsonwebtoken": "^9.0.2",
"knex": "^2.5.1",
"next": "13.5.3",
"next-auth": "^4.23.1",
"nodemailer": "^6.9.5",
"pg": "^8.11.3",
"postcss": "8.4.30",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.46.2",
"react-infinite-logo-slider": "^1.0.13",
"tailwindcss": "3.3.3",
"uuid": "^9.0.1",
"zod": "^3.22.2"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.6",
"@types/jsonwebtoken": "^9.0.3",
"@types/node": "20.7.1",
"@types/nodemailer": "^6.4.11",
"@types/react": "18.2.23",
"@types/react-dom": "18.2.8",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"eslint-config-next": "^13.5.3",
"husky": "^8.0.3",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "^0.4.1",
"sqlite3": "^5.1.6",
"typescript": "5.2.2",
"vitest": "^0.34.5"
}
}