-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.54 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
51
52
53
54
55
56
57
{
"name": "trajectory-visualizer",
"version": "0.0.1",
"author": {
"name": "Pontus Espe",
"email": "[email protected]"
},
"private": true,
"type": "module",
"dependencies": {
"axios": "^1.6.8",
"browser-process-hrtime": "^1.0.0",
"clsx": "^2.1.1",
"diff": "^7.0.0",
"jszip": "^3.10.1",
"path-browserify": "^1.0.1",
"react": "^18.2.0",
"react-diff-viewer-continued": "^3.4.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.3.8",
"react-icons": "^5.5.0",
"react-markdown": "^9.1.0",
"react-router-dom": "^6.22.3",
"react-syntax-highlighter": "^15.6.1",
"remark-gfm": "^4.0.1",
"web-vitals": "^4.2.4"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"pre-commit": "./pre-commit-check.sh"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.11.30",
"@types/react": "^18.2.67",
"@types/react-dom": "^18.2.22",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/testing-library__react": "^10.0.1",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.18",
"jsdom": "^26.0.0",
"postcss": "^8.4.35",
"tailwind-scrollbar": "^3.0.5",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.2",
"vite": "^6.2.1",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^3.0.8"
}
}