forked from vercel/next-learn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 689 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 689 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
{
"private": true,
"scripts": {
"lint": "eslint . --ext .cjs,.js,.jsx,.mjs,.ts,.tsx",
"prettier": "prettier --write --ignore-unknown .",
"prettier:check": "prettier --check --ignore-unknown .",
"start": "next start",
"test": "npm run lint && npm run prettier:check"
},
"dependencies": {
"@tailwindcss/forms": "^0.5.7",
"next": "^14.0.0"
},
"devDependencies": {
"@vercel/style-guide": "^5.0.1",
"eslint": "8.52.0",
"eslint-config-next": "14.0.0",
"eslint-config-prettier": "9.0.0",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "0.5.4"
},
"packageManager": "pnpm@8.7.0",
"engines": {
"node": ">=18.17.0"
}
}