-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.61 KB
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": "timmme",
"version": "0.0.2",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"commit": "cz",
"version": "conventional-changelog -i CHANGELOG.md -s -r 0",
"prettier:write": "prettier --write .",
"prettier:check": "prettier --check .",
"prisma:pull": "dotenv -e .env.local -- prisma db pull",
"prisma:studio": "dotenv -e .env.local -- prisma studio",
"prisma:migrate": "dotenv -e .env.local -- prisma migrate dev",
"prisma:generate": "dotenv -e .env.local -- prisma generate",
"prisma:push": "dotenv -e .env.local -- prisma db push",
"prisma:deploy": "dotenv -e .env.local -- prisma migrate deploy",
"prisma:resolve": "dotenv -e .env.local -- prisma migrate resolve",
"prepare": "husky install",
"postinstall": "prisma generate"
},
"dependencies": {
"@mantine/charts": "^7.10.1",
"@mantine/code-highlight": "^7.10.1",
"@mantine/core": "^7.10.1",
"@mantine/dates": "^7.10.1",
"@mantine/dropzone": "^7.10.1",
"@mantine/form": "^7.10.1",
"@mantine/hooks": "^7.10.1",
"@mantine/modals": "^7.10.1",
"@mantine/notifications": "^7.10.1",
"@mantine/nprogress": "^7.10.1",
"@mantine/tiptap": "^7.10.1",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.13.0",
"@react-email/components": "^0.0.14",
"@tabler/icons-react": "^2.46.0",
"@tiptap/extension-link": "^2.2.0",
"@tiptap/react": "^2.2.0",
"@tiptap/starter-kit": "^2.2.0",
"@vercel/toolbar": "^0.1.15",
"dayjs": "^1.11.10",
"nanoid": "^5.0.6",
"next": "14.2.3",
"next-auth": "^4.24.5",
"papaparse": "^5.4.1",
"react": "^18",
"react-dom": "^18",
"recharts": "^2.11.0",
"resend": "^3.1.0",
"swr": "^2.2.4"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20",
"@types/papaparse": "^5.3.14",
"@types/react": "^18",
"@types/react-dom": "^18",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^4.1.0",
"dotenv-cli": "^7.3.0",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"git-cz": "^4.9.0",
"husky": "^9.0.10",
"lint-staged": "^15.2.1",
"postcss": "^8.4.33",
"postcss-preset-mantine": "^1.12.3",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.2.4",
"prisma": "^5.13.0",
"typescript": "^5"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"config": {
"commitizen": {
"path": "git-cz"
}
}
}