-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.61 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
{
"name": "set-web-2023",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "panda codegen",
"lint": "run-p lint:*",
"lint:prettier": "prettier --check ./",
"lint:eslint": "eslint --ext .js,jsx,.ts,.tsx",
"fix": "run-p fix:*",
"fix:prettier": "prettier --write ./",
"fix:lint": "eslint --ext .js,jsx,.ts,.tsx --fix",
"download": "./node_modules/.bin/ts-node ./script/download.ts",
"convert": "./node_modules/.bin/ts-node ./script/convert.ts"
},
"dependencies": {
"@mantine/core": "^7.2.2",
"@mantine/hooks": "^7.2.2",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-unused-imports": "^3.0.0",
"firebase": "^10.11.0",
"next": "14.0.2",
"react": "^18",
"react-dom": "^18",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.0",
"swiper": "^11.0.5"
},
"devDependencies": {
"@pandacss/dev": "^0.18.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-syntax-highlighter": "^15.5.10",
"axios": "^1.6.2",
"eslint": "^8",
"eslint-config-next": "14.0.2",
"gray-matter": "^4.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0",
"sass": "^1.83.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"volta": {
"node": "20.12.1",
"yarn": "1.22.22"
}
}