-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.38 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.38 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "subcloud",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"test": "jest",
"coverage": "jest --coverage",
"e2e": "playwright test",
"prepare": "husky install"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.145.0",
"@aws-sdk/s3-request-presigner": "^3.145.0",
"@chakra-ui/icons": "^2.0.6",
"@chakra-ui/react": "^2.2.6",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@hookform/resolvers": "^2.9.7",
"@next-auth/prisma-adapter": "^1.0.4",
"@prisma/client": "^4.2.1",
"@tosspayments/payment-sdk": "^1.1.1",
"@younginch/subtitle": "^0.4.1",
"algoliasearch": "^4.14.2",
"apexcharts": "^3.35.4",
"axios": "^0.27.2",
"dayjs": "^1.11.4",
"framer-motion": "^7.0.1",
"iso-639-1": "^2.1.15",
"joi": "^17.6.0",
"multer": "1.4.5-lts.1",
"multer-s3": "^3.0.1",
"next": "12.2.4",
"next-auth": "^4.10.3",
"next-connect": "1.0.0-next.3",
"next-sitemap": "^3.1.17",
"next-translate": "^1.5.0",
"nextjs-cors": "^2.1.1",
"nodemailer": "^6.7.7",
"react": "18.2.0",
"react-apexcharts": "^1.4.0",
"react-calendar-heatmap": "^1.9.0",
"react-circular-progressbar": "^2.1.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-draggable": "^4.4.5",
"react-dropzone": "^14.2.2",
"react-fast-marquee": "^1.3.5",
"react-hook-form": "^7.34.0",
"react-hook-inview": "^4.5.0",
"react-hotkeys": "^2.0.0",
"react-icons": "^4.4.0",
"react-joyride": "^2.5.1",
"react-pro-sidebar": "^0.7.1",
"react-reflex": "^4.0.9",
"react-remove-scroll-bar": "^2.3.3",
"react-rnd": "^10.3.7",
"react-tooltip": "^4.2.21",
"react-window": "^1.8.7",
"react-youtube": "^9.0.3",
"sharp": "^0.30.7",
"swr": "^1.3.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@faker-js/faker": "^7.4.0",
"@playwright/test": "^1.24.2",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.6",
"@types/multer": "^1.4.7",
"@types/multer-s3": "^3.0.0",
"@types/node": "^16.11.47",
"@types/react": "18.0.17",
"@types/react-calendar-heatmap": "^1.6.3",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-grid-layout": "^1.3.2",
"@types/react-window": "^1.8.5",
"@types/styled-components": "^5.1.25",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^8.21.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "12.2.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"lint-staged": "^13.0.3",
"node-mocks-http": "^1.11.0",
"prettier": "2.7.1",
"prisma": "^4.2.1",
"styled-components": "^5.3.5",
"typescript": "4.7.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
}
}