-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.55 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
{
"name": "belisy-commerce",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"postinstall": "patch-package"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^4.6.1",
"@tanstack/react-query": "^4.16.1",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.8",
"axios": "^1.2.0",
"date-fns": "^2.29.3",
"draft-js": "^0.11.7",
"eslint": "8.27.0",
"eslint-config-next": "13.0.3",
"jwt-decode": "^3.1.2",
"next": "13.0.3",
"next-auth": "^4.16.4",
"nuka-carousel": "^5.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-draft-wysiwyg": "^1.15.0",
"sharp": "^0.31.2",
"typescript": "4.8.4"
},
"devDependencies": {
"@types/draft-js": "^0.11.9",
"@types/react-draft-wysiwyg": "^1.13.4",
"autoprefixer": "^10.4.13",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"next-sitemap": "^3.1.31",
"patch-package": "^6.5.0",
"postcss": "^8.4.19",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.7.1",
"prisma": "^4.6.1",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1"
},
"resolutions": {
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}