-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
50 lines (50 loc) · 1.49 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
{
"name": "devresume",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest",
"test:e2e": "npx playwright test"
},
"dependencies": {
"@codemirror/language": "^6.6.0",
"@codemirror/legacy-modes": "^6.3.1",
"@codemirror/lint": "^6.2.0",
"@codemirror/stream-parser": "^0.19.9",
"@react-hook/resize-observer": "^1.2.6",
"@react-pdf/renderer": "^3.1.12",
"@uiw/codemirror-theme-github": "^4.19.9",
"@uiw/codemirror-theme-vscode": "^4.21.18",
"@uiw/react-codemirror": "^4.19.9",
"markdown-to-jsx": "^7.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-pdf": "^7.3.3",
"split-pane-react": "^0.1.3",
"yaml": "^2.3.2",
"z-schema": "^6.0.1"
},
"devDependencies": {
"@playwright/test": "^1.39.0",
"@testing-library/react": "^14.0.0",
"@types/codemirror": "^5.60.10",
"@types/node": "^20.8.8",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"jsdom": "^22.1.0",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vitest": "^0.34.6"
}
}