-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.07 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
{
"name": "temp-files",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --write **.{js,jsx,ts,tsx,json,css,md,yml,yaml,mjs}",
"format:check": "prettier --check **.{js,jsx,ts,tsx,json,css,md,yml,yaml,mjs}"
},
"dependencies": {
"@vercel/analytics": "^1.6.1",
"next": "^16.2.3",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-icons": "^5.6.0",
"server-only": "^0.0.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^20.19.39",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"babel-plugin-react-compiler": "1.0.0",
"baseline-browser-mapping": "^2.10.18",
"eslint": "^9.39.4",
"eslint-config-next": "16.0.5",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.2",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3"
}
}