-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
59 lines (59 loc) · 1.78 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
{
"name": "tantrafiesta-2022",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"format": "prettier --write . --ignore-path .gitignore",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check . --ignore-path .gitignore",
"test-all": "npm run check-format && npm run lint && npm run check-types && npm run build",
"svg": "svgr -d src/components/svgs public/svgs",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build"
},
"dependencies": {
"@prisma/client": "^4.3.1",
"@vercel/og": "^0.0.18",
"aos": "^2.3.4",
"date-fns": "^2.29.3",
"next": "12.2.5",
"next-pwa": "^5.6.0",
"next-share": "^0.18.1",
"nodemailer": "^6.8.0",
"react": "18.2.0",
"react-countdown": "^2.3.2",
"react-dom": "18.2.0",
"react-icons": "^4.4.0",
"react-slick": "^0.28.1",
"react-spinners": "^0.13.4",
"sharp": "^0.31.0",
"sitemap": "^7.1.1",
"swr": "^1.3.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.3.1",
"@svgr/cli": "^6.3.1",
"@svgr/webpack": "^6.3.1",
"@types/aos": "^3.0.4",
"@types/node": "18.7.13",
"@types/nodemailer": "^6.4.6",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@types/react-slick": "^0.23.10",
"cross-env": "^7.0.3",
"eslint": "^8.23.0",
"eslint-config-next": "^12.2.5",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.0",
"prettier": "^2.7.1",
"prisma": "^4.3.1",
"typescript": "^4.8.2",
"typescript-plugin-css-modules": "^3.4.0"
}
}