-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.9 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
{
"name": "recipeamigo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:verify": "dotenv -e .env.local.test -- next build",
"analyze": "dotenv -v ANALYZE=true next build",
"start": "next start",
"lint": "next lint",
"lint:verify": "next lint --max-warnings 0",
"prettier": "prettier --write src",
"prettier:verify": "prettier --check src",
"migrate:dev": "dotenv -e .env.local -- prisma migrate dev",
"test:unit": "dotenv -e .env.local.test -- vitest unit.test.ts",
"test:integration": "dotenv -e .env.local.test -- prisma migrate deploy && dotenv -e .env.local.test -- vitest run integration.test.ts -c vite.local.config.ts",
"test": "dotenv -e .env.local.test -- vitest run --poolOptions.threads.singleThread -c vite.local.config.ts",
"test:unit:ci": "vitest unit.test.ts",
"test:integration:ci": "dotenv -e .env.local.test -- prisma migrate deploy && dotenv -e .env.local.test -- vitest run --poolOptions.threads.singleThread integration.test.ts",
"sumHours": "node ./sumHours.js",
"prepare": "husky install",
"commitlint": "commitlint --edit",
"prisma:studio": "dotenv -e .env.local -- prisma studio",
"tsc": "tsc --noEmit"
},
"dependencies": {
"@clerk/nextjs": "^5.1.5",
"@prisma/client": "^5.6.0",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@tiptap/extension-document": "^2.1.12",
"@tiptap/extension-paragraph": "^2.1.12",
"@tiptap/extension-placeholder": "^2.1.12",
"@tiptap/extension-text": "^2.1.12",
"@tiptap/html": "^2.1.12",
"@tiptap/pm": "^2.1.12",
"@tiptap/react": "^2.1.12",
"filenamify": "^6.0.0",
"framer-motion": "^10.16.4",
"i18next": "^23.6.0",
"minio": "^7.1.3",
"next": "^14.2.22",
"next-i18next": "^15.3.0",
"next-superjson-plugin": "^0.6.3",
"pdfkit": "^0.13.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.11.0",
"react-select": "^5.7.7",
"screenfull": "^6.0.2",
"sharp": "^0.32.6",
"superjson": "^1.13.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@next/bundle-analyzer": "^14.2.4",
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
"@types/node": "20.8.7",
"@types/pdfkit": "^0.13.1",
"@types/react": "18.2.31",
"@types/react-dom": "18.2.14",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"dotenv-cli": "^7.3.0",
"eslint": "^8.52.0",
"eslint-config-next": "^14.2.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"prisma": "^5.6.0",
"sass": "^1.69.4",
"typescript": "^5.2.2",
"vitest": "^1.0.1"
}
}