-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 975 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 975 Bytes
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
{
"name": "nightly-tests-website",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "npx serve out",
"lint": "eslint",
"data:fetch": "node ./scripts/fetch-data.mjs"
},
"dependencies": {
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-table": "^8.21.3",
"next": "^16.2.3",
"next-themes": "^0.4.6",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "16.2.3",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^22.19.11",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"babel-plugin-react-compiler": "^1.0.0",
"dotenv": "^17.4.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-svgo": "^0.12.0",
"firebase-admin": "^13.8.0",
"tailwindcss": "^4.2.2"
}
}