-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
75 lines (75 loc) · 2.26 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
{
"name": "verto",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix .",
"prepare": "husky install",
"prebuild": "ts-node data/index.ts",
"test": "jest"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@next/bundle-analyzer": "^15.0.1",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.13",
"@types/node": "22.8.7",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"dayjs": "^1.11.13",
"millify": "^6.1.0",
"next": "^14.2.15",
"react": "^18.2.0",
"react-dom": "^18.3.1",
"react-infinite-scroll-component": "^6.1.0",
"schema-dts": "^1.1.2",
"sharp": "^0.33.5",
"slugify": "^1.6.6",
"validator": "^13.12.0",
"vercel": "^37.11.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.8",
"@octokit/core": "^5.2.0",
"@octokit/graphql-schema": "^14.50.0",
"@octokit/plugin-retry": "^6.0.1",
"@octokit/plugin-throttling": "^8.2.0",
"@octokit/types": "^13.6.1",
"@types/jest": "^29.5.14",
"@types/react-infinite-scroller": "^1.2.5",
"@types/validator": "^13.12.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.10.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.14.0",
"eslint-config-next": "^15.0.2",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"husky": "^9.1.6",
"eslint-plugin-unused-imports": "^4.1.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.13",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "5.6.3"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx|json|css|md|mdx)": [
"eslint --fix"
]
}
}