-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 861 Bytes
/
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
{
"private": true,
"scripts": {
"format": "prettier --write .",
"clean": "rm -rf dist/",
"build": "next build",
"dev": "next dev",
"start": "next start",
"start:prod": "npm run clean && npm run build && npx serve ./dist"
},
"dependencies": {
"base64url": "3.0.1",
"next": "14.2.3",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"engines": {
"node": ">=20.12.2"
},
"devDependencies": {
"@types/node": "20.12.12",
"@types/react": "18.3.2",
"autoprefixer": "10.4.19",
"postcss": "8.4.38",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "0.5.14",
"tailwindcss": "3.4.3",
"typescript": "5.4.5"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"plugins": [
"prettier-plugin-tailwindcss"
]
}
}