-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.74 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"pre-commit": "yarn run format && git add -A .",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@chakra-ui/react": "2.1.2",
"@emotion/react": "11.9.0",
"@emotion/styled": "11.8.1",
"@fontsource/fira-code": "4.5.10",
"@fontsource/nanum-pen-script": "4.5.5",
"@fontsource/syncopate": "4.5.7",
"framer-motion": "6.3.10",
"next": "12.1.6",
"next-seo": "5.4.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-icons": "4.4.0",
"react-typist": "2.0.5"
},
"devDependencies": {
"@commitlint/cli": "17.0.2",
"@commitlint/config-conventional": "17.0.2",
"@trivago/prettier-plugin-sort-imports": "3.2.0",
"@types/react": "18.0.12",
"@types/react-typist": "2.0.3",
"commitlint": "17.0.2",
"commitlint-config-gitmoji": "2.2.5",
"eslint": "8.17.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "4.5.0",
"husky": "8.0.1",
"prettier": "2.6.2",
"standard-version": "9.5.0",
"typescript": "4.7.3"
},
"version": "1.0.0"
}