-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.84 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
{
"name": "next-clerk-hmr-error",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"type": "module",
"engines": {
"node": ">=20.x",
"yarn": ">=4.5.0",
"npm": ">=7"
},
"browserslist": [
"last 2 node major versions"
],
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint --ignore-path .gitignore .",
"prettier": "prettier --config .prettierrc --ignore-path .gitignore \"**/*.+(js|jsx|json|yml|ts|tsx|css|md|yaml)\"",
"format": " yarn run lint --fix . && yarn run prettier --cache --write",
"format:force": " yarn run lint --fix . && yarn run prettier --write",
"prepare": "husky",
"postinstall": "husky",
"check-format": "yarn run prettier --cache --list-different",
"check-types": "tsc --noEmit -p tsconfig.json",
"validate": "yarn npm-run-all --parallel check-types check-format lint",
"test:ci": "true"
},
"dependencies": {
"@clerk/nextjs": "^5.6.1",
"@sentry/nextjs": "^8",
"browserslist": "^4.23.3",
"next": "14.2.13",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.13",
"@types/node": "^20.16.6",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.13",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"postcss-import": "^16.1.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwind-css": "^1.5.0",
"tailwindcss": "^3.4.13",
"typescript": "~5.5.4",
"typescript-eslint": "^8.7.0"
},
"resolutions": {
"@typescript-eslint/parser": ">=8.6.0"
}
}