-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.43 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.43 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
81
82
83
84
85
86
{
"name": "portaljs-frontend-starter",
"version": "0.1.0",
"engines": {
"node": "22"
},
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit --incremental false",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "npm run lint --fix",
"generate:routes": "node scripts/generate-routes.js",
"test:e2e": "playwright test",
"test:pa11y": "node scripts/run-pa11y-from-routes.js",
"test:lhci": "node scripts/run-lhci-from-routes.js"
},
"dependencies": {
"@headlessui/react": "^1.7.1",
"@heroicons/react": "^2.0.11",
"@portaljs/ckan": "^0.1.0",
"@portaljs/ckan-api-client-js": "^1.4.0",
"@portaljs/components": "^0.3.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.10",
"clsx": "^2.1.1",
"minisearch": "^5.0.0",
"next": "^13.0.0",
"next-seo": "^5.5.0",
"papaparse": "^5.5.1",
"primereact": "^10.9.1",
"rc-slider": "^11.1.8",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-icons": "^4.4.0",
"react-markdown": "^10.1.0",
"react-particles": "^2.12.2",
"react-tailwindcss-datepicker": "^1.7.2",
"react-vega": "^7.6.0",
"recharts": "^3.7.0",
"remark-gfm": "^4.0.1",
"sass": "^1.54.0",
"swr": "^1.3.0",
"tailwind-merge": "^3.3.1",
"timeago.js": "^4.0.2",
"tsparticles-slim": "^2.12.0",
"vega": "^5.25.0",
"vega-embed": "^6.29.0",
"vega-lite": "^5.1.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.0",
"@babel/core": "^7.20.7",
"@babel/preset-react": "^7.18.6",
"@lhci/cli": "^0.15.1",
"@playwright/test": "^1.56.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/cypress": "^1.1.3",
"@types/jest": "^29.5.14",
"@types/node": "^18.6.1",
"@types/papaparse": "^5.3.15",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.9",
"cross-env": "^7.0.3",
"dotenv": "^17.2.3",
"eslint": "8.20.0",
"eslint-config-next": "12.2.3",
"eslint-config-prettier": "^8.5.0",
"jest-axe": "^10.0.0",
"lint-staged": "^13.0.3",
"pa11y-ci": "^4.0.1",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.8",
"ts-node": "^10.9.2",
"typescript": "4.7.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}