-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
122 lines (122 loc) · 4 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "next-init-2.0-2.0-2.0",
"version": "1.2.1",
"private": true,
"description": "Simple project that shows the usage of Next.js with TypeScript",
"author": "TOKTOKHAN.DEV<[email protected]>",
"scripts": {
"dev": "next dev",
"build": "next build",
"type-check": "tsc --skipLibCheck --noEmit",
"lint": "yarn type-check && next lint",
"lint:staged": "lint-staged",
"start": "yarn build && next start",
"preinstall": "node src/scripts/node-version-checker.js",
"prepare": "husky install",
"postinstall": "yarn run theme",
"commit": "tokript commit",
"test": "jest --coverage --coverageReporters=text-summary",
"test:watch": "jest --watch",
"clean-up": "node src/scripts/remove-unnecessary.js",
"tokript": "tokript",
"theme": "chakra-cli tokens src/configs/theme/index.ts",
"theme:open": "code -r node_modules/@chakra-ui/styled-system/dist/theming.types.d.ts",
"gen:source": "tokript gen:source",
"gen:api": "tokript gen:api",
"gen:icon": "tokript gen:icon",
"gen:img": "tokript gen:img",
"gen:font": "tokript gen:font",
"gen:route": "tokript gen:route",
"convert:webp": "tokript convert:webp",
"format": "prettier --loglevel warn --write \"**/*.{ts,tsx,css,md}\"",
"semantic-release": "semantic-release",
"checklist:progress": "node src/scripts/update-checklist-progress.js",
"analyze": "ANALYZE=true next build"
},
"dependencies": {
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.5.1",
"@chakra-ui/styled-system": "^2.9.1",
"@chakra-ui/theme-tools": "^2.0.18",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@hookform/resolvers": "^2.8.8",
"@tanstack/react-query": "^4.2.3",
"@tanstack/react-query-devtools": "^4.2.3",
"axios": "^1.3.4",
"chakra-react-select": "^4.6.0",
"dayjs": "^1.10.6",
"framer-motion": "^10.5.0",
"globby": "^13.2.2",
"immer": "^10.0.1",
"lodash-es": "^4.17.21",
"next": "^13.2.4",
"next-seo": "^6.1.0",
"react": "^18.2.0",
"react-cookie": "^4.1.1",
"react-datepicker": "^4.10.0",
"react-device-detect": "^2.1.2",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.5",
"react-select": "^5.2.1",
"tinycolor2": "^1.4.2",
"use-context-selector": "^1.4.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@chakra-ui/cli": "^2.4.0",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@next/bundle-analyzer": "^13.4.10",
"@next/eslint-plugin-next": "^13.3.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@tosspayments/payment-sdk": "^1.1.1",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/facebook-pixel": "^0.0.30",
"@types/gtag.js": "^0.0.12",
"@types/kakao-pixel": "^0.11.0",
"@types/lodash-es": "^4.17.8",
"@types/node": "18.15.11",
"@types/react": "^18.0.28",
"@types/react-datepicker": "^4.4.2",
"@types/react-dom": "^18.0.11",
"@types/tinycolor2": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"dotenv": "^16.0.0",
"eslint": "^8.39.0",
"eslint-config-next": "^13.3.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": ">=7",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^10.5.4",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"semantic-release": "^21.0.1",
"semantic-release-slack-bot": "^4.0.1",
"tokript": "^1.6.5",
"typescript": "^4.9.4"
},
"msw": {
"workerDirectory": "public"
},
"engines": {
"node": ">= 18.0.0",
"npm": ">= 7.10.0",
"yarn": ">= 1.22.17"
},
"os": [
"darwin",
"win64",
"linux"
],
"engineStrict": true
}