-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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
{
"name": "nextjs-template",
"version": "0.1.0",
"private": true,
"engines": {
"node": "18",
"npm": "9"
},
"scripts": {
"dev": "npx -y vercel env pull && next dev -p 3000",
"build": "prettier --check . && vitest run && next build",
"start": "next start -p 3000",
"lint": "next lint",
"prettier": "prettier --write .",
"test": "vitest",
"deps-check": "npm install && ncu",
"deps-upgrade": "ncu --upgrade --target minor && npm install && npm audit fix"
},
"dependencies": {
"@total-typescript/ts-reset": "0.4.2",
"@types/node": "20.3.3",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@typescript-eslint/eslint-plugin": "5.61.0",
"autoprefixer": "10.4.14",
"eslint": "8.44.0",
"eslint-config-next": "13.4.8",
"eslint-plugin-deprecation": "1.4.1",
"next": "13.4.8",
"npm-check-updates": "16.10.13",
"postcss": "8.4.24",
"prettier": "3.0.0",
"prettier-plugin-tailwindcss": "0.3.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.2",
"tiny-invariant": "1.3.1",
"typescript": "5.1.6",
"vitest": "0.32.4"
}
}