-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.71 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.71 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
71
72
73
74
75
76
77
78
79
80
{
"name": "constellation",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.node.json --noEmit && vite build",
"preview": "vite preview",
"test": "echo \"No tests yet\" && exit 0",
"test:watch": "vitest",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"lint": "eslint . --ext js,jsx,ts,tsx",
"lint:fix": "eslint . --ext js,jsx,ts,tsx --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint:css": "stylelint \"**/*.{css,scss}\"",
"lint:css:fix": "stylelint \"src/**/*.{css,scss}\" --fix",
"check": "npm run format && npm run lint",
"check:fix": "npm run format && npm run lint:fix",
"tscheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.node.json --noEmit",
"precheck": "bash ./scripts/precheck.sh",
"prepare": "husky",
"fmt:check": "prettier --config .prettierrc.yml --ignore-path .prettierignore --check .",
"fmt:write": "prettier --config .prettierrc.yml --ignore-path .prettierignore --write .",
"lint:eslint": "eslint src --ext .js,.jsx,.ts,.tsx --cache",
"lint:eslint:strict": "eslint . --max-warnings=0",
"typecheck": "tsc --noEmit --pretty false"
},
"dependencies": {
"@formkit/auto-animate": "^0.8.2",
"canvas-confetti": "^1.9.3",
"husky": "^9.1.7",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-router-dom": "^7.9.4"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@tailwindcss/postcss": "^4.1.12",
"@tailwindcss/vite": "^4.1.14",
"@types/node": "^24.7.2",
"@types/papaparse": "^5.3.16",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^5.0.4",
"cytoscape": "^3.33.1",
"d3-scale-chromatic": "^3.1.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.23",
"gh-pages": "^6.3.0",
"gitleaks": "^1.0.0",
"globals": "^16.4.0",
"graphology": "^0.26.0",
"graphology-communities-louvain": "^2.0.2",
"graphology-metrics": "^2.4.0",
"jszip": "^3.10.1",
"papaparse": "^5.5.3",
"path": "^0.12.7",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"react-force-graph-2d": "^1.29.0",
"react-force-graph-3d": "^1.29.0",
"stylelint": "^16.24.0",
"stylelint-config-standard": "^39.0.0",
"tailwindcss": "^4.1.12",
"three": "^0.180.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1",
"vite": "^7.1.11",
"vitest": "^3.2.4",
"zustand": "^5.0.8"
}
}