-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.02 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.02 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
{
"name": "metamap",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev -p 3010",
"build": "next build",
"start": "next start -p 3010",
"type-check": "tsc --noEmit",
"lint": "eslint . --max-warnings=0",
"format": "prettier --write .",
"test": "vitest",
"test:ci": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:update": "playwright test --update-snapshots",
"playwright:install": "playwright install chromium",
"playwright:install:ci": "playwright install --with-deps chromium"
},
"dependencies": {
"@tanstack/react-virtual": "^3.10.8",
"@vvo/tzdb": "^6.128.0",
"astronomy-engine": "^2.1.19",
"clsx": "^2.1.1",
"d3": "^7.9.0",
"luxon": "^3.5.0",
"next": "^16.1.6",
"papaparse": "^5.4.1",
"react": "19.2.0",
"react-dom": "19.2.0",
"solarlunar": "^2.0.7",
"swisseph": "^0.5.5",
"zod": "^3.23.8",
"zustand": "^5.0.1"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/d3": "^7.4.3",
"@types/jest": "^29.5.12",
"@types/jsdom": "^27.0.0",
"@types/luxon": "^3.7.1",
"@types/node": "^20",
"@types/papaparse": "^5.3.15",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.4",
"@vitest/ui": "^2.1.4",
"autoprefixer": "^10.4.20",
"baseline-browser-mapping": "^2.10.0",
"eslint": "^9.14.0",
"eslint-config-next": "^16.1.6",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.0.0",
"jsdom": "^25.0.1",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.15",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
}
}