generated from TobiasGleiter/nextjs-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.63 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
53
54
55
56
{
"name": "nextjs13-ts-tailwind-husky-eslint-template",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=16.17.0",
"npm": ">=9.1.2",
"yarn": "please-use-npm"
},
"scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write .",
"prepare": "husky install",
"e2e": "start-server-and-test dev http://localhost:3000 \"cypress open --e2e\"",
"e2e:headless": "start-server-and-test dev http://localhost:3000 \"cypress run --e2e\"",
"component": "cypress open --component",
"component:headless": "cypress run --component"
},
"dependencies": {
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-slot": "^1.0.2",
"cloudinary": "^2.2.0",
"lucide-react": "^0.352.0",
"next": "^13.5.6",
"next-cloudinary": "^6.5.2",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/node": "20.4.9",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"autoprefixer": "^10.4.14",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cross-env": "^7.0.3",
"cypress": "^13.5.1",
"eslint": "8.47.0",
"eslint-config-next": "13.4.13",
"eslint-plugin-cypress": "^2.15.1",
"husky": "^8.0.3",
"install": "^0.13.0",
"npm": "^10.5.0",
"postcss": "^8.4.27",
"prettier": "3.0.1",
"tailwind-merge": "^2.2.1",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.1.6"
}
}