-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.69 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.69 KB
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
{
"name": "hiyagg-landing",
"version": "1.0.0",
"description": "Next.js frontend for Hiya.gg - landing page while the site is being built",
"author": "Zerite Development",
"license": "AGPL-3.0",
"scripts": {
"prepare": "husky install",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "pnpm run --silent lint:prettier && npm run --silent lint:eslint",
"lint:prettier": "prettier -w \"{components,pages}/**/*.{js,jsx,ts,tsx}\" -u",
"lint:eslint": "eslint --fix \"{components,pages}/**/*.{js,jsx,ts,tsx}\""
},
"devDependencies": {
"@svgr/webpack": "^6.2.1",
"@tsconfig/node16": "^1.0.3",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"autoprefixer": "^10.4.7",
"eslint": "^8.18.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.3",
"typescript": "^4.7.4"
},
"lint-staged": {
"{pages,components}/**/*.{js,jsx,ts,tsx}": "npm run lint"
},
"dependencies": {
"@fontsource/poppins": "^4.5.8",
"clsx": "^1.1.1",
"next": "^12.1.6",
"next-seo": "^5.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}