-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.1 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
{
"private": true,
"type": "module",
"name": "ross.software",
"version": "0.1.0",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@vercel/analytics": "^1.1.1",
"@vercel/speed-insights": "^1.1.0",
"next": "^15",
"next-themes": "^0.4.3",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106",
"react-feather": "^2.0.10"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@next/eslint-plugin-next": "^15.0.3",
"@stylistic/eslint-plugin": "^2.10.1",
"@types/node": "^20",
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
"eslint": "^9",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.12.0",
"typescript": "^5",
"typescript-eslint": "^8.14.0"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"overrides": {
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1"
}
}