-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.7 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
{
"name": "meditate",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"lint:strict": "eslint --max-warnings=0 src",
"typecheck": "tsc --noEmit --incremental false",
"format": "prettier -w .",
"format:check": "prettier -c .",
"release": "standard-version",
"push-release": "git push --follow-tags origin master",
"postbuild": "next-sitemap",
"docker:db": "docker-compose -f docker-compose.db.yml up -d"
},
"dependencies": {
"@prisma/client": "^3.8.1",
"await-to-js": "^3.0.0",
"clsx": "^1.1.1",
"framer-motion": "^6.2.3",
"jotai": "^1.5.3",
"next": "12.0.8",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-intersection-observer": "^8.33.1",
"tailwind-merge": "^1.2.0",
"zustand": "^3.6.9"
},
"devDependencies": {
"@tailwindcss/forms": "^0.4.0",
"@types/node": "17.0.12",
"@types/react": "17.0.38",
"@types/tailwindcss": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"@welldone-software/why-did-you-render": "^6.2.3",
"autoprefixer": "^10.4.2",
"eslint": "^8.7.0",
"eslint-config-next": "^12.0.8",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"next-sitemap": "^2.0.7",
"postcss": "^8.4.5",
"prettier-plugin-tailwindcss": "^0.1.4",
"prisma": "^3.8.1",
"standard-version": "^9.3.2",
"tailwind-heropatterns": "^0.0.8",
"tailwindcss": "^3.0.16",
"typescript": "4.5.5"
}
}