-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.67 KB
/
package.json
File metadata and controls
65 lines (65 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@bratteng/website",
"version": "3.4.1",
"description": "My personal websites",
"private": true,
"homepage": "https://bratteng.com",
"repository": {
"type": "git",
"url": "git@github.com:omBratteng/website.git"
},
"author": {
"name": "Ole-Martin Bratteng",
"email": "ole-martin@bratteng.com",
"url": "https://bratteng.com"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/omBratteng/website/issues"
},
"browserslist": [
"defaults",
"> 0.5%",
"last 2 versions",
"not dead",
"not IE 11",
"not kaios 2.5",
"not baidu 7.12",
"not and_qq 10.4",
"not and_uc 12.12",
"not op_mini all"
],
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"staging": "APP_ENV=staging next build && next start",
"lint": "next lint --dir app components"
},
"dependencies": {
"@next/bundle-analyzer": "^16.0.1",
"@vercel/analytics": "^2.0.0",
"@vercel/speed-insights": "^2.0.0",
"next": "^16.0.1",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.17",
"@types/node": "24.x",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/webpack-env": "^1.18.8",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"eslint": "^10.0.0",
"eslint-config-next": "^16.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.33.0"
}