-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.15 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
{
"name": "jsdoc-web-generator",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "rimraf .next && next dev",
"build": "next build",
"start": "next start",
"lint": "biome lint app e2e",
"lint:fix": "biome check --apply app e2e",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"e2e:debug": "playwright test --debug",
"e2e:report": "playwright show-report",
"e2e:codegen": "playwright codegen"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@uiw/react-textarea-code-editor": "^3.0.2",
"framer-motion": "^11.0.3",
"jsdoc": "3.6.11",
"jsdom": "^24.0.0",
"next": "14.1.3",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.0.1",
"react-ts-typewriter": "0.1.8-b"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@playwright/test": "^1.41.2",
"@types/gtag.js": "^0.0.19",
"@types/jsdom": "^21.1.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"rimraf": "^5.0.5",
"typescript": "^5"
}
}