-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 997 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 997 Bytes
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
{
"name": "particlelens-web",
"version": "0.3.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --config vite.config.js",
"preview": "vite preview --config vite.config.js",
"prepare:runtime": "node scripts/prepare_web_runtime.mjs",
"build:web": "npm run prepare:runtime && node scripts/build_frontend.mjs web",
"build:native": "node scripts/build_frontend.mjs native",
"test": "vitest run",
"test:e2e": "playwright test",
"test:e2e:update-recognition-baseline": "npm run build:web && node scripts/update_recognition_baseline.mjs",
"lint": "eslint static scripts vite.config.js playwright.config.js tests/e2e"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@playwright/test": "1.62.0",
"eslint": "10.8.0",
"globals": "17.8.0",
"jsdom": "26.1.0",
"pyodide": "0.28.3",
"vite": "7.3.6",
"vitest": "3.2.7"
},
"dependencies": {
"lucide": "^1.27.0",
"plotly.js-basic-dist-min": "^3.7.0"
}
}