-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.54 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.54 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "artifacta",
"version": "0.1.0",
"type": "module",
"description": "Universal experiment and artifact tracking — gain insights and optimize models with confidence",
"scripts": {
"dev": "vite --config config/vite.config.js",
"build": "vite build --config config/vite.config.js",
"preview": "vite preview --config config/vite.config.js",
"lint": "eslint src --ext js,jsx --config config/eslint.config.js",
"test": "vitest",
"test:e2e": "playwright test --config config/playwright.config.js",
"test:e2e:ui": "playwright test --config config/playwright.config.js --ui",
"docs:ui": "jsdoc -c config/jsdoc.json"
},
"dependencies": {
"@aarkue/tiptap-math-extension": "^1.4.0",
"@tiptap/core": "^3.15.3",
"@tiptap/extension-image": "^3.15.3",
"@tiptap/extension-link": "^3.15.3",
"@tiptap/extension-table": "^3.15.3",
"@tiptap/extension-table-cell": "^3.15.3",
"@tiptap/extension-table-header": "^3.15.3",
"@tiptap/extension-table-row": "^3.15.3",
"@tiptap/extension-task-item": "^3.15.3",
"@tiptap/extension-task-list": "^3.15.3",
"@tiptap/react": "^3.15.3",
"@tiptap/starter-kit": "^3.15.3",
"framer-motion": "^11.11.17",
"katex": "^0.16.27",
"papaparse": "^5.5.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.6.0",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"reactflow": "^11.11.4",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.48.0",
"@types/node": "^24.10.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^9.14.0",
"eslint-plugin-jsdoc": "^62.3.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"jsdoc": "^4.0.5",
"knip": "^5.82.1",
"sass": "^1.97.2",
"sass-embedded": "^1.97.2",
"vite": "^5.4.10",
"vitest": "^2.1.4"
},
"keywords": [
"data-visualization",
"experiment-tracking",
"metrics",
"visualization",
"interactive",
"analytics",
"react"
],
"author": "Brandon Walker",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/artifacta.git"
},
"bugs": {
"url": "https://github.com/yourusername/artifacta/issues"
},
"license": "MIT",
"depcheck": {
"ignores": [
"knip"
],
"ignoreDirs": [
"dist",
"node_modules",
".git"
]
}
}