-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.31 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "navigate-ui",
"version": "0.1.0",
"type": "module",
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/gemini-hlsw/navigate-ui.git"
},
"scripts": {
"dev": "vite",
"tsc:watch": "tsc -w",
"codegen:watch": "graphql-codegen --config tasks/codegen.ts --watch",
"build": "tsc && vite build",
"preview": "vite preview",
"deploy": "./deploy.sh",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "pnpm lint:prettier && pnpm lint:eslint",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint .",
"codegen": "graphql-codegen --config tasks/codegen.ts",
"prepare": "node .husky/install.js"
},
"files": [
"dist"
],
"dependencies": {
"@apollo/client": "3.12.11",
"@xyflow/react": "12.4.2",
"clsx": "2.1.1",
"graphql": "16.10.0",
"jotai": "2.11.3",
"lucuma-core": "0.115.1",
"lucuma-ui-css": "0.129.0",
"primeicons": "7.0.0",
"primereact": "10.9.2",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-router": "7.1.5",
"subscriptions-transport-ws": "0.11.0",
"uuid": "11.0.5"
},
"devDependencies": {
"@eslint/js": "9.20.0",
"@graphql-codegen/cli": "5.0.4",
"@graphql-codegen/client-preset": "4.6.2",
"@graphql-typed-document-node/core": "3.2.0",
"@parcel/watcher": "2.5.1",
"@types/eslint__js": "8.42.3",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@types/uuid": "10.0.0",
"@vitejs/plugin-react-swc": "3.8.0",
"@vitest/browser": "3.0.5",
"@vitest/coverage-v8": "3.0.5",
"@vitest/ui": "3.0.5",
"eslint": "9.20.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import-x": "4.6.1",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"globals": "15.14.0",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"lucuma-schemas": "0.116.0",
"playwright": "1.50.1",
"prettier": "3.5.0",
"sass": "1.84.0",
"typescript": "5.7.3",
"typescript-eslint": "8.23.0",
"vite": "6.1.0",
"vite-plugin-mkcert": "1.17.6",
"vitest": "3.0.5",
"vitest-browser-react": "0.1.1"
},
"lint-staged": {
"*.{js,mjs,ts,tsx,jsx,css,md,json,yml}": "prettier --write"
}
}