-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 956 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 956 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
{
"name": "dapids-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --project ./tsconfig.json",
"lint": "biome lint app components hooks utils public",
"format": "biome format app components hooks utils public",
"format:write": "biome format --write app components hooks utils public"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.5.2",
"@fortawesome/free-brands-svg-icons": "6.5.2",
"@fortawesome/free-solid-svg-icons": "6.5.2",
"@fortawesome/react-fontawesome": "0.2.2",
"@next/third-parties": "^16.2.4",
"next": "^16.2.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"ts-debounce": "4.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@types/next": "9.0.0",
"@types/node": "24.10.8",
"@types/react": "18.3.3",
"typescript": "5.5.2"
}
}