-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.41 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
{
"name": "access-page",
"version": "1.5.3",
"description": "Visualizations of data usage across the archive.",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --config configs/vite.config.js",
"build": "vite build --config configs/vite.config.js && node --input-type=module -e \"import { copyFileSync } from 'node:fs'; copyFileSync('CNAME', 'dist/CNAME');\"",
"preview": "vite preview --config configs/vite.config.js",
"format": "prettier --config configs/prettier.config.cjs --write .",
"format:check": "prettier --config configs/prettier.config.cjs --check .",
"typecheck": "tsc --noEmit --project configs/tsconfig.json",
"test": "vitest run --config configs/vitest.config.js",
"test:watch": "vitest --config configs/vitest.config.js",
"test:coverage": "vitest run --coverage --config configs/vitest.config.js",
"test:e2e": "playwright test --config configs/playwright.config.js",
"test:chromatic": "playwright test --config configs/playwright.chromatic.config.js",
"test:e2e:coverage": "PW_COVERAGE=1 playwright test --config configs/playwright.config.js",
"coverage:integration": "node src/scripts/build-integration-coverage.mjs",
"storybook": "storybook dev -p 6006 --config-dir configs/storybook",
"build-storybook": "storybook build --config-dir configs/storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dandi/access-page.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/dandi/access-page/issues"
},
"homepage": "https://github.com/dandi/access-page#readme",
"devDependencies": {
"@chromatic-com/playwright": "^0.13.4",
"@playwright/test": "^1.61.1",
"@storybook/html-vite": "^10.3.6",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.7.0",
"@types/plotly.js": "^3.0.10",
"@types/topojson-client": "^3.1.5",
"@vitest/coverage-v8": "^4.1.9",
"ast-v8-to-istanbul": "^1.0.0",
"chromatic": "^17.8.0",
"istanbul-lib-coverage": "^3.2.2",
"istanbul-lib-report": "^3.0.1",
"istanbul-reports": "^3.2.0",
"jsdom": "^29.1.1",
"prettier": "^3.8.3",
"storybook": "^10.3.6",
"typescript": "^6.0.3",
"vite": "^8.1.2",
"vitest": "^4.1.6"
},
"dependencies": {
"js-yaml": "^4.2.0",
"plotly.js-dist-min": "^3.6.0",
"topojson-client": "^3.1.0"
},
"overrides": {
"esbuild": "^0.28.1"
}
}