-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.76 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
{
"name": "streamlit_pivot",
"version": "0.3.0",
"private": true,
"type": "module",
"scripts": {
"build": "npm run clean && npm run typecheck && npm run build:frontend:production",
"build:frontend:production": "cross-env NODE_ENV=production vite build",
"clean": "rimraf build",
"dev": "cross-env NODE_ENV=development vite build --watch",
"format": "prettier --write \"src/**/*.{ts,tsx}\" \"vite.config.ts\"",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"bench": "vitest bench --run",
"bench:ci": "vitest bench --run --outputJson bench-results.json",
"bench:check": "vitest bench --run --outputJson bench-results.json && node scripts/check-bench-regression.mjs",
"bench:save-baseline": "vitest bench --run --outputJson bench-baseline.json",
"bench:memory": "node --expose-gc scripts/bench-memory.mjs"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"prettier": {},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@streamlit/component-v2-lib": "^0.2.0",
"apache-arrow": "^21.1.0",
"exceljs": "^4.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.5.1",
"@types/node": "^22.14.1",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.6",
"@vitejs/plugin-react": "^5.1.0",
"@vitest/coverage-v8": "^3.2.4",
"cross-env": "^10.1.0",
"jsdom": "^26.1.0",
"prettier": "^3.6.2",
"rimraf": "^6.1.0",
"typescript": "^5.8.3",
"vite": "^7.1.12",
"vitest": "^3.2.4"
}
}