-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.5 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.5 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
{
"name": "datalab-web",
"version": "0.2.0",
"private": true,
"description": "Full-Web version of DataLab — scientific data processing in the browser via Pyodide + Sigima",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,mjs,cjs,css,html,md,json}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mjs,cjs,css,html,md,json}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"bench:run": "node tests/benchmark/scripts/run_all.mjs",
"bench:report": "python tests/benchmark/shared/report.py",
"bench:wheels": "node tests/benchmark/scripts/build_wheels.mjs",
"sdk:build": "npm --prefix packages/sdk run build",
"sdk:pack": "node scripts/pack-sdk.mjs",
"app:pack": "node scripts/pack-app.mjs",
"release:pack": "npm run format:check && npm run lint && npm run test && npm run build && npm run sdk:pack && npm run app:pack && node scripts/release-summary.mjs"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/language": "^6.12.3",
"@codemirror/search": "^6.7.0",
"@codemirror/state": "^6.6.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.41.1",
"dompurify": "^3.4.2",
"idb": "^8.0.3",
"marked": "^18.0.3",
"plotly.js-dist-min": "^2.35.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-plotly.js": "^2.6.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@playwright/test": "^1.59.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/dompurify": "^3.0.5",
"@types/node": "^25.6.0",
"@types/plotly.js-dist-min": "^2.3.4",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-plotly.js": "^2.6.3",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "^2.1.9",
"eslint": "^9.13.0",
"eslint-plugin-react-hooks": "^7.1.1",
"fake-indexeddb": "^6.2.5",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"prettier": "^3.3.3",
"pyodide": "^0.26.4",
"typescript": "^5.6.3",
"typescript-eslint": "^8.59.1",
"vite": "^5.4.10",
"vitest": "^2.1.9"
}
}