-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.67 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.67 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
{
"name": "temp-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack -p 3222",
"build": "next build",
"start": "next start -p 3222",
"lint": "next lint",
"export": "next build && next export",
"static": "NEXT_STATIC_EXPORT=true next build",
"build:github-pages": "GITHUB_PAGES_DEPLOYMENT=true NEXT_STATIC_EXPORT=true next build",
"build:analyze": "ANALYZE=true GITHUB_PAGES_DEPLOYMENT=true NEXT_STATIC_EXPORT=true next build",
"prepare-data": "node scripts/prepare-build-data.js",
"build:with-cache": "npm run prepare-data && npm run build:github-pages",
"serve": "serve out"
},
"dependencies": {
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.4.5",
"@mui/material": "^6.4.5",
"@mui/material-nextjs": "^6.4.3",
"@mui/x-data-grid": "^8.3.1",
"@uiw/react-json-view": "^2.0.0-alpha.32",
"cheerio": "^1.0.0",
"firebase": "^11.3.1",
"framer-motion": "^12.4.7",
"lucide-react": "^0.475.0",
"next": "15.5.7",
"qrcode.react": "^4.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-infinite-scroll-component": "^6.1.0",
"react-toastify": "^11.0.3",
"recharts": "^2.15.3",
"serve": "^14.2.1"
},
"devDependencies": {
"@emotion/css": "^11.13.5",
"@emotion/server": "^11.11.0",
"@eslint/eslintrc": "^3",
"@next/bundle-analyzer": "^15.5.4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.1.7",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}