-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.69 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "web-app-template",
"description": "An opinionated template for building web apps.",
"keywords": [
"react",
"nextjs",
"vercel"
],
"license": "UNLICENSED",
"homepage": "https://github.com/IGassmann/web-app-template#readme",
"repository": "https://github.com/IGassmann/web-app-template",
"bugs": "https://github.com/IGassmann/web-app-template/issues",
"author": "Igor Gassmann <[email protected]> (https://igassmann.me/)",
"main": "n/a",
"scripts": {
"env:pull": "vercel env pull .env.local",
"env:add": "vercel env add",
"env:rm": "vercel env rm",
"dev": "next dev --turbo",
"dev:debug": "cross-env NODE_OPTIONS='--inspect' next dev",
"lint": "next lint --ignore-path ./.gitignore --fix",
"format": "prettier . --write",
"build": "next build",
"start": "next start",
"prepare": "husky",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@clerk/nextjs": "5.3.7",
"@headlessui/react": "2.1.3",
"@headlessui/tailwindcss": "0.2.1",
"@heroicons/react": "2.1.5",
"@segment/analytics-next": "1.66.0",
"@segment/analytics-node": "2.1.2",
"@sentry/nextjs": "8.27.0",
"next": "15.0.0-canary.136",
"react": "19.0.0-rc-7771d3a7-20240827",
"react-dom": "19.0.0-rc-7771d3a7-20240827",
"tailwind-merge": "2.2.2"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.1.0",
"@commitlint/cz-commitlint": "19.2.0",
"@commitlint/types": "19.0.3",
"@ianvs/prettier-plugin-sort-imports": "4.3.1",
"@svgr/webpack": "8.1.0",
"@tailwindcss/forms": "0.5.8",
"@types/node": "20.x",
"@types/react": "npm:types-react-dom@rc",
"@types/react-dom": "npm:types-react-dom@rc",
"@typescript-eslint/eslint-plugin": "7.8.0",
"autoprefixer": "10.4.19",
"commitizen": "4.3.0",
"cross-env": "7.0.3",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-next": "15.0.0-canary.136",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-tsdoc": "0.3.0",
"eslint-plugin-unicorn": "55.0.0",
"husky": "9.0.11",
"knip": "5.17.3",
"lint-staged": "15.2.2",
"postcss": "8.4.38",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.8",
"tailwindcss": "3.4.10",
"type-fest": "4.26.0",
"typescript": "5.5.4",
"vercel": "33.6.3"
},
"pnpm": {
"overrides": {
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc"
}
},
"engines": {
"node": "20.x",
"pnpm": "8.15.5"
},
"packageManager": "[email protected]",
"private": true
}