-
Notifications
You must be signed in to change notification settings - Fork 354
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.89 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.89 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
{
"name": "next-jwt",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev -p 1234",
"generate:library-data": "tsx src/scripts/generate-library-data.ts",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"coverage": "vitest run --coverage",
"playwright:test-ui": "NODE_OPTIONS=\"--no-experimental-strip-types\" npx playwright test --ui"
},
"dependencies": {
"@formatjs/intl-localematcher": "^0.5.7",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^14.2.17",
"@next/third-parties": "^14.2.17",
"@svgr/webpack": "^8.1.0",
"@types/js-cookie": "^3.0.6",
"@types/mdx": "^2.0.13",
"@types/negotiator": "^0.6.3",
"@types/prismjs": "^1.26.3",
"@vercel/analytics": "^1.4.1",
"base64url": "^3.0.1",
"bowser": "^2.11.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"jose": "^5.2.3",
"js-cookie": "^3.0.5",
"loglevel": "^1.9.1",
"nanoid": "^5.0.9",
"negotiator": "^1.0.0",
"neverthrow": "^8.1.1",
"next": "14.2.35",
"node-forge": "^1.3.1",
"octokit": "^4.0.2",
"prismjs": "^1.29.0",
"querystring": "^0.2.0",
"react": "^18.3.1",
"react-aria-components": "^1.6.0",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"react-select": "^5.9.0",
"rehype-raw": "^7.0.0",
"sass": "^1.74.1",
"schema-dts": "^1.1.2",
"tsx": "^4.15.7",
"zod": "^3.23.8",
"zustand": "^4.5.2"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@types/node": "^20",
"@types/node-forge": "^1.3.11",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitest/coverage-istanbul": "^1.4.0",
"eslint": "^8",
"eslint-config-next": "^14.2.3",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.1"
}
}