-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.03 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
{
"name": "plotforge",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22 <25",
"npm": ">=10"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src eslint.config.js vite.config.js vitest.config.js",
"test": "vitest run",
"test:watch": "vitest",
"ci": "npm run lint && npm run test && npm run build",
"osc:relay": "node scripts/osc-relay.mjs"
},
"dependencies": {
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"fake-indexeddb": "^6.2.5",
"globals": "^17.4.0",
"jsdom": "^29.0.2",
"vite": "^8.0.7",
"vitest": "^4.1.4"
}
}