-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.65 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
{
"name": "swapside",
"version": "0.2.0",
"author": "josiahhhh <[email protected]>",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 80",
"lint": "eslint --fix .",
"format": "prettier --write './src/**/*.{js,jsx,ts,tsx,css,md,json}'"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/server": "^11.10.0",
"@mantine/core": "^5.3.0",
"@mantine/dates": "^5.3.3",
"@mantine/ds": "^5.3.0",
"@mantine/form": "^5.6.3",
"@mantine/hooks": "^5.6.2",
"@mantine/next": "^5.3.0",
"@mantine/notifications": "^5.6.3",
"@mantine/prism": "^5.6.3",
"@prisma/client": "4.3.1",
"@reduxjs/toolkit": "^1.8.6",
"@tabler/icons": "^1.95.1",
"@types/nprogress": "^0.2.0",
"axios": "^0.27.2",
"dayjs": "^1.11.5",
"framer-motion": "^7.3.5",
"next": "12.2.6",
"next-redux-wrapper": "^8.0.0",
"next-seo": "^5.5.0",
"nprogress": "^0.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.4.0",
"react-redux": "^8.0.4",
"redux": "^4.2.0",
"swr": "^1.3.0"
},
"devDependencies": {
"@types/node": "18.7.16",
"@types/react": "18.0.19",
"@types/react-dom": "18.0.6",
"eslint": "8.23.0",
"eslint-config-next": "12.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prisma": "^4.3.1",
"typescript": "4.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
}
}