-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.68 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.68 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
{
"name": "ginny-web",
"version": "1.0.0",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:e2e": "playwright test",
"test:cov": "jest --coverage",
"test:watch": "jest --watch-all",
"release": "npx standard-version && git push --follow-tags origin main"
},
"browserslist": "defaults, not ie <= 11",
"dependencies": {
"@headlessui/react": "2.1.2",
"@heroicons/react": "2.1.5",
"@mapbox/rehype-prism": "0.9.0",
"@mdx-js/loader": "3.0.1",
"@mdx-js/react": "3.0.1",
"@next/mdx": "14.2.5",
"@tailwindcss/typography": "0.5.13",
"autoprefixer": "10.4.19",
"cheerio": "1.0.0-rc.12",
"clsx": "2.1.1",
"fast-glob": "3.3.2",
"feed": "4.2.2",
"moment": "2.30.1",
"next": "14.2.5",
"next-themes": "0.3.0",
"qs": "6.12.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-markdown": "9.0.1",
"react-player": "2.16.0",
"remark-gfm": "4.0.0",
"sharp": "0.33.4",
"tailwindcss": "3.4.6",
"typescript": "5.5.3"
},
"devDependencies": {
"@playwright/test": "1.45.2",
"@testing-library/jest-dom": "6.4.6",
"@testing-library/react": "16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "29.5.12",
"@types/node": "20.14.11",
"@types/qs": "6.9.15",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/webpack-env": "1.18.5",
"eslint": "8.57.0",
"eslint-config-next": "14.2.5",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jsdom": "24.1.0",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.5"
}
}