-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.75 KB
/
package.json
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
{
"name": "gosling-meta",
"version": "0.0.1",
"description": "Use Gosling with linked metadata visualization",
"main": "index.js",
"repository": "[email protected]:gosling-lang/gosling-meta.git",
"homepage": "https://gosling-lang.github.io/gosling-meta/",
"license": "MIT",
"scripts": {
"start": "vite",
"build": "vite build",
"serve": "vite preview",
"test": "vitest",
"predeploy": "yarn build",
"format": "eslint src/ --fix && prettier --write *",
"deploy": "touch dist/.nojekyll; gh-pages -d dist -t --git git"
},
"dependencies": {
"@tanstack/react-table": "^8.10.7",
"@tanstack/react-virtual": "^3.1.3",
"gosling.js": "^0.16.0",
"higlass": "^1.12.4",
"pixi.js": "^6.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.11.2",
"react-vega": "^7.6.0",
"vega": "^5.25.0",
"vega-lite": "^5.9.3"
},
"devDependencies": {
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.59.6",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.32.2",
"gh-pages": "^5.0.0",
"prettier": "^2.8.8",
"typescript": "*",
"vite": "^5.2.0-beta.1",
"vitest": "^0.31.2"
}
}