-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.58 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.58 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
{
"name": "kweb-static",
"version": "0.0.1",
"description": "Static version of KWEB website",
"main": "src/index.ts",
"scripts": {
"start": "nodemon --ext js,ts,json,env src/index.ts",
"prepare": "husky install",
"build": "tsc --project tsconfig.build.json",
"release": "standard-version",
"lint": "eslint --ext .ts,.js .",
"format": "prettier \"src/**\" --write --ignore-unknown",
"format:check": "prettier --check \"src/**\" --ignore-unknown",
"dev": "next dev",
"nbuild": "next build",
"nstart": "next start",
"export": "next export",
"deploy": "next build && next export"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KWEBofficial/kweb-static.git"
},
"author": "KWEB",
"license": "MIT",
"bugs": {
"url": "https://github.com/KWEBofficial/kweb-static/issues"
},
"homepage": "https://github.com/KWEBofficial/kweb-static#readme",
"dependencies": {
"@chakra-ui/icons": "^2.0.2",
"@chakra-ui/react": "2.5.4",
"@chakra-ui/theme-tools": "^2.0.2",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.9.0",
"@mui/icons-material": "^5.14.19",
"@splinetool/react-spline": "^2.2.6",
"@types/node": "^17.0.8",
"axios": "^1.6.2",
"dompurify": "^3.0.6",
"formik": "^2.2.9",
"framer-motion": "^6.5.1",
"fs": "^0.0.1-security",
"husky": "^7.0.4",
"jsonwebtoken": "^8.5.1",
"msw": "^0.49.0",
"next": "12.3.0",
"pretendard": "^1.3.5",
"rand-token": "^1.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-is": "^17.0.2",
"react-quill": "^2.0.0",
"react-slick": "^0.29.0",
"slick-carousel": "^1.8.1",
"tsconfig-paths": "^3.13.0",
"tslib": "^2.3.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@next/eslint-plugin-next": "^14.0.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@tosspayments/payment-sdk": "^1.0.2",
"@types/dompurify": "^3.0.5",
"@types/react": "^18.0.19",
"@types/react-slick": "^0.23.12",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-tsdoc": "^0.2.14",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"lint-staged": "^12.1.7",
"next-images": "^1.8.4",
"prettier": "^3.1.1",
"typescript": "4.9.5"
}
}