-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.97 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
{
"name": "oishii-restaurants",
"version": "0.1.0",
"private": true,
"author": "totran",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"type-check": "tsc --noEmit",
"format": "prettier --write src",
"up": "yarn upgrade-interactive",
"up-latest": "yarn up --latest",
"release": "cross-env HUSKY=0 standard-version",
"push-release": "git push --follow-tags origin main",
"prepare": "husky install",
"prebuild": "prisma generate",
"prisma:migrate": "prisma migrate deploy"
},
"dependencies": {
"@chakra-ui/icons": "2.0.14",
"@chakra-ui/react": "2.4.4",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@formiz/core": "^1.8.1",
"@formiz/validations": "^1.0.0",
"@prisma/client": "^4.8.0",
"@reduxjs/toolkit": "1.9.1",
"@types/react-slick": "0.23.10",
"bcrypt": "^5.1.0",
"framer-motion": "^8.1.7",
"next": "13.0.0",
"next-auth": "4.17.0",
"next-pwa": "^5.6.0",
"next-redux-wrapper": "8.1.0",
"next-seo": "5.15.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "4.7.1",
"react-image-lightbox": "5.1.4",
"react-redux": "8.0.5",
"react-slick": "0.29.0",
"swr": "^2.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.3.0",
"@commitlint/cz-commitlint": "^17.3.0",
"@playwright/test": "^1.28.0",
"@types/bcrypt": "^5.0.0",
"@types/react": "^18.0.25",
"commitizen": "^4.2.5",
"commitlint": "^17.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.27.0",
"eslint-config-next": "^13.0.5",
"eslint-config-sznm": "^1.0.1",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"next-sitemap": "^3.1.32",
"prettier": "^2.8.0",
"prisma": "^4.8.0",
"standard-version": "^9.5.0",
"typescript": "^4.9.3"
}
}