-
Notifications
You must be signed in to change notification settings - Fork 200
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.1 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.1 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
{
"private": true,
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:ui": "playwright test --ui",
"test:e2e:codegen": "playwright codegen http://localhost:3000/blog",
"test:e2e:chromium": "playwright test --project=chromium",
"test:e2e:report": "playwright show-report"
},
"dependencies": {
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.3.0",
"@codemirror/lang-python": "^6.1.6",
"@codemirror/view": "^6.34.1",
"@gsap/react": "^2.1.0",
"@lottiefiles/react-lottie-player": "^3.5.3",
"@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-navigation-menu": "^1.2.13",
"@radix-ui/react-slot": "^1.2.3",
"@react-spring/web": "^9.7.3",
"@tailwindcss/forms": "^0.5.10",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@uiw/codemirror-theme-dracula": "^4.23.5",
"@uiw/react-codemirror": "^4.23.5",
"class-variance-authority": "^0.7.1",
"classnames": "^2.3.1",
"clsx": "^2.1.1",
"codemirror": "^6.0.1",
"date-fns": "^2.28.0",
"framer-motion": "^11.18.2",
"gsap": "^3.12.5",
"highlight.js": "^11.9.0",
"json-diff-kit": "^1.0.29",
"lucide-react": "^0.524.0",
"next": "latest",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "^4.7.4"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^18.19.130",
"@types/prismjs": "^1.26.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "10.4.7",
"dotenv": "^17.3.1",
"eslint": "8.56.0",
"eslint-config-next": "14.1.0",
"postcss": "8.4.31",
"tailwindcss": "^3.0.24"
}
}