-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
66 lines (66 loc) · 2.24 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
{
"name": "next-starter-strict",
"private": true,
"type": "module",
"scripts": {
"prepare": "husky install",
"dev": "next dev",
"build": "next build",
"build:analyze": "cross-env ANALYZE=true pnpm run build",
"start": "next start",
"clean": "git clean --interactive -dx --exclude .env.local --exclude \".env.*.local\" --exclude node_modules/ --exclude .husky/",
"lint": "npm-run-all --parallel lint:js+ts lint:format lint:types",
"lint:js+ts": "eslint --ext .js,.jsx,.cjs,.ts,.tsx,.cts --ignore-path .gitignore .",
"lint:format": "prettier \"**/*\" --check --ignore-unknown",
"lint:types": "tsc --noEmit",
"lint:fix": "npm-run-all --serial lint:fix:*",
"lint:fix:js+ts": "pnpm run lint:js+ts --fix",
"lint:fix:format": "prettier \"**/*\" --write --ignore-unknown"
},
"dependencies": {
"@heroicons/react": "2.0.16",
"@next/bundle-analyzer": "13.2.4",
"clsx": "1.2.1",
"focus-visible": "5.2.0",
"next": "13.2.4",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@tsconfig/next": "1.0.5",
"@types/node": "18.15.11",
"@types/react": "18.0.31",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/parser": "5.57.0",
"cross-env": "7.0.3",
"eslint": "8.37.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-next": "13.2.4",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-etc": "2.0.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-tailwindcss": "3.10.1",
"husky": "8.0.3",
"nano-staged": "0.8.0",
"npm-run-all": "4.1.5",
"postcss": "8.4.21",
"postcss-import": "15.1.0",
"postcss-preset-env": "8.2.0",
"prettier": "2.8.7",
"prettier-plugin-tailwindcss": "0.2.6",
"tailwindcss": "3.3.1",
"typescript": "5.0.2"
},
"packageManager": "[email protected]",
"nano-staged": {
"*": "prettier --write --ignore-unknown",
"*.{js,jsx,cjs,ts,tsx,cts}": "eslint --fix"
}
}