-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 2.16 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
{
"name": "temp",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build --mode production",
"build:cache": "echo 'Building cache...' && cd scripts && echo 'Installing dependencies...' && npm install && echo 'Compiling TypeScript...' && npx tsc && echo 'Generating GitHub data cache...' && node dist/cache-github-data.js && echo 'Cache generation complete'",
"build:all": "npm run build:cache && npm run build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"test": "vitest run --exclude '**/__integration_tests__/**'",
"test:watch": "vitest --exclude '**/__integration_tests__/**'",
"test:coverage": "vitest run --coverage --exclude '**/__integration_tests__/**'",
"test:integration": "vitest run '**/__integration_tests__/**'",
"typecheck": "tsc --noEmit",
"cache-data": "node scripts/cache-github-data.js",
"monitor:cache": "cd scripts && npx tsc && node dist/monitor-cache.js",
"build:cache:safe": "npm run build:cache || (echo 'Cache build failed, checking status...' && npm run monitor:cache)"
},
"dependencies": {
"@nextui-org/react": "^2.4.8",
"@tailwindcss/typography": "^0.5.15",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.15"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/node": "^22.10.1",
"@types/node-fetch": "^2.6.12",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.15.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.12.0",
"jsdom": "^25.0.1",
"react-vega": "^7.6.0",
"ts-node": "^10.9.2",
"typescript": "~5.6.2",
"typescript-eslint": "^8.15.0",
"vega-lite": "^5.21.0",
"vite": "^6.0.1",
"vitest": "^2.1.8"
}
}