-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.3 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
{
"name": "fintech-month-2023",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.10",
"@chakra-ui/react": "^2.3.4",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@fontsource/inter": "^4.5.13",
"@googleapis/sheets": "^4.0.0",
"antd": "^5.0.5",
"framer-motion": "^6.5.1",
"google-auth-library": "^8.6.0",
"next": "12.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.7.1",
"sharp": "^0.31.3",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@types/node": "18.7.20",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/styled-components": "^5.1.26",
"autoprefixer": "^10.4.13",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "8.24.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.20",
"prettier": "^2.7.1",
"tailwindcss": "^3.2.4",
"typescript": "4.8.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
}
}