-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.19 KB
/
package.json
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
{
"name": "max.patii.uk",
"version": "1.0.0",
"private": true,
"description": "Source code for max.patii.uk",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/maxpatiiuk/max.patii.uk"
},
"scripts": {
"build": "next build",
"test": "npm run build",
"debug": "NODE_OPTIONS='--inspect' next dev",
"dev": "next dev",
"start": "next start"
},
"dependencies": {
"@next/third-parties": "^14.2.3",
"next": "^14.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typesafe-reducer": "^1.0.4"
},
"devDependencies": {
"@maxxxxxdlp/eslint-config-react": "^3.0.0",
"@types/node": "^20.14.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"eslint": "^9.4.0",
"postcss": "^8.4.38",
"prettier": "^3.3.1",
"sharp": "^0.33.4",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.5",
"vercel": "^34.2.5"
},
"browserslist": {
"production": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}