This repository was archived by the owner on Sep 30, 2025. It is now read-only.
-
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.8 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.8 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": "jarvis",
"private": true,
"version": "0.9.772",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"test:all": "npm run test:unit && npm run test:e2e",
"test:unit": "vitest",
"test:e2e": "concurrently \"npm run preview\" \"cypress open\"",
"docs:gen": "jsdoc --configure jsdoc.json"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@tauri-apps/api": "^1.5.2",
"autoprefixer": "^10.4.17",
"chart.js": "^4.4.1",
"dompurify": "^3.1.3",
"framer-motion": "^11.0.3",
"jsdom": "^24.0.0",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.0",
"showdown": "^2.1.0",
"tailwindcss": "^3.4.1"
},
"devDependencies": {
"@babel/parser": "^7.23.9",
"@tauri-apps/cli": "^1.5.8",
"@types/dompurify": "^3.0.5",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/sanitize-html": "^2.9.5",
"@types/showdown": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"cypress": "^13.6.4",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdoc": "^4.0.2",
"postcss": "^8.4.38",
"typescript": "^5.3.3",
"vite": "^5.4.10",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.5.0"
}
}