-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.06 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
{
"name": "oppamanycolortone",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"lint": "next lint",
"lint-staged": "lint-staged",
"lint-fix": "eslint '**/*.{tsx,ts}' --ext .ts,.tsx --fix"
},
"lint-staged": {
"**/*.{tsx,ts,jsx,js}": [
"eslint --fix"
]
},
"resolutions": {
"styled-components": "^5"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-regular-svg-icons": "^6.3.0",
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@next/third-parties": "^14.2.4",
"@sentry/nextjs": "^7.52.1",
"@splinetool/react-spline": "^4.0.0",
"@splinetool/runtime": "^1.9.21",
"@types/kakao-js-sdk": "^1.39.1",
"base64-arraybuffer": "^1.0.2",
"css-line-break": "^2.1.0",
"eslint-config-prettier": "^8.6.0",
"firebase": "^9.17.1",
"i18next": "^23.12.2",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^2.5.2",
"js-md5": "^0.8.3",
"next": "^14.2.4",
"next-i18next": "^15.3.1",
"react": "^18.2.0",
"react-avatar-editor": "^13.0.0",
"react-dom": "^18.2.0",
"react-i18next": "^15.0.0",
"react-minimal-pie-chart": "^8.4.0",
"recoil": "^0.7.6",
"sharp": "^0.33.4",
"styled-components": "^5.3.6",
"stylelint-config-prettier": "^9.0.5",
"text-segmentation": "^1.0.3",
"ua-parser-js": "^2.0.0-alpha.2"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.5.4",
"@types/react": "^18.0.28",
"@types/react-avatar-editor": "^13.0.0",
"@types/react-dom": "^18.0.11",
"@types/styled-components": "^5.1.26",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"typescript": "^4.9.5"
}
}