-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.52 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
{
"name": "chosung-quiz",
"version": "1.0.0",
"scripts": {
"dev": "blitz dev",
"build": "blitz build",
"start": "blitz start",
"studio": "blitz prisma studio",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts,.tsx .",
"prepare": "husky install"
},
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"semi": false,
"printWidth": 100
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@blitzjs/auth": "2.0.0-beta.4",
"@blitzjs/next": "2.0.0-beta.4",
"@blitzjs/rpc": "2.0.0-beta.4",
"@headlessui/react": "1.7.3",
"@prisma/client": "4.5.0-dev.41",
"antd": "4.23.3",
"axios": "0.27.2",
"blitz": "2.0.0-beta.4",
"chalk": "5.0.1",
"clsx": "1.2.1",
"dayjs": "1.11.5",
"diff": "5.1.0",
"discord.js": "14.5.0",
"final-form": "4.20.7",
"framer-motion": "7.5.1",
"hangul-js": "0.2.6",
"howler": "2.2.3",
"lodash": "4.17.21",
"next": "12.3.1",
"next-pwa": "5.6.0",
"nextjs-progressbar": "0.0.14",
"rc-slider": "10.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-fast-marquee": "1.3.5",
"react-final-form": "6.5.9",
"react-icons": "4.4.0",
"react-loader-spinner": "5.3.4",
"react-markdown": "8.0.3",
"react-youtube": "10.0.0",
"recoil": "0.7.5",
"styled-components": "5.3.6",
"tlru": "1.0.2",
"tmi.js": "1.8.5",
"yaml": "2.1.2",
"zod": "3.19.1"
},
"devDependencies": {
"@babel/core": "7.19.3",
"@babel/helper-create-regexp-features-plugin": "7.19.0",
"@babel/helper-remap-async-to-generator": "7.18.9",
"@types/diff": "5.0.2",
"@types/dotenv": "8.2.0",
"@types/howler": "2.2.7",
"@types/lodash": "4.14.186",
"@types/node": "18.7.23",
"@types/preview-email": "2.0.1",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/styled-components": "5.1.26",
"@types/tmi.js": "1.8.1",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"babel-plugin-styled-components": "2.0.7",
"eslint": "8.24.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"prettier-plugin-prisma": "4.2.0",
"pretty-quick": "3.1.3",
"preview-email": "3.0.7",
"prisma": "4.5.0-dev.41",
"react-is": "18.2.0",
"typescript": "~4.8.4",
"webpack": "5.74.0"
},
"private": true
}