-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.62 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
{
"name": "wonderland-web",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "npx eslint ./src/",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix"
},
"dependencies": {
"@vercel/analytics": "1.3.2",
"@vercel/speed-insights": "1.1.0",
"fontfaceobserver": "2.3.0",
"next": "14.1.1",
"next-videos": "1.4.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-draggable": "4.4.5",
"react-markdown": "9.0.1",
"react-responsive-carousel": "3.2.23",
"react-router-dom": "6.8.0",
"react-transition-group": "4.4.5",
"rehype-katex": "7.0.0",
"rehype-raw": "7.0.0",
"remark-math": "6.0.0",
"sharp": "0.33.5",
"styled-components": "6.1.1"
},
"devDependencies": {
"@types/fontfaceobserver": "2.1.0",
"@types/node": "20.9.5",
"@types/react": "18.3.6",
"@types/react-dom": "18.3.0",
"@types/react-router-dom": "5.3.3",
"@types/react-transition-group": "4.4.5",
"@types/styled-components": "5.1.25",
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
"eslint": "8.26.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.0",
"eslint-plugin-react-hooks": "4.6.0",
"prettier": "2.8.4",
"typescript": "4.6.4"
}
}