-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.04 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.04 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "devxian96.github.io",
"description": "Seokhyun jang's Portfolio website",
"version": "0.2.4",
"private": true,
"license": "MIT",
"homepage": "https://devxian96.github.io",
"repository": {
"type": "git",
"url": "https://github.com/devxian96/devxian96.github.io.git"
},
"author": "devxian96<coolman555@me.com>",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "yarn dlx serve@latest out",
"predeploy": "next build && yarn release && git push --follow-tags origin main",
"deploy": "yarn predeploy && gh-pages -d out",
"lint": "next lint",
"prettier": "prettier --write .",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"postinstall": "husky",
"preinstall": "npx only-allow yarn",
"release": "standard-version"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/material": "^5.15.20",
"@mui/material-nextjs": "^5.15.11",
"@mui/styles": "^5.15.20",
"emotion-reset": "^3.0.1",
"framer-motion": "^11.2.11",
"next": "14.2.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"recoil": "^0.7.7",
"recoil-persist": "^5.1.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@emotion/eslint-plugin": "^11.11.0",
"@next/eslint-plugin-next": "^14.2.4",
"@tanstack/eslint-plugin-query": "^5.43.1",
"@types/node": "^20.14.8",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.10.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"gh-pages": "^6.1.1",
"husky": "^9.0.11",
"lint-staged": ">=15.2.7",
"prettier": "^3.2.5",
"standard-version": "^9.5.0",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"bash -c 'yarn prettier'",
"bash -c 'yarn lint'",
"bash -c 'yarn type-check'"
],
"*.css": [
"bash -c 'yarn prettier'"
],
"*.{json,md}": [
"bash -c 'yarn prettier'"
]
},
"engines": {
"node": "20.13.1"
},
"packageManager": "yarn@4.2.2",
"volta": {
"node": "20.13.1",
"yarn": "4.2.2"
}
}