forked from lucavallin/verto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.41 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
{
"name": "verto",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"prebuild": "ts-node data/index.ts",
"test": "jest"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-regular-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@next-auth/mongodb-adapter": "^1.1.3",
"@next/bundle-analyzer": "^14.0.1",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@types/bcryptjs": "^2.4.5",
"@types/node": "20.10.0",
"@types/react": "18.2.25",
"@types/react-dom": "18.2.17",
"axios": "^1.6.1",
"bcryptjs": "^2.4.3",
"dayjs": "^1.11.10",
"millify": "^6.1.0",
"mongoose": "^8.0.0",
"next": "^13.5.6",
"next-auth": "^4.24.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-infinite-scroll-component": "^6.1.0",
"react-toastify": "^9.1.3",
"schema-dts": "^1.1.2",
"sharp": "^0.32.6",
"slugify": "^1.6.6",
"validator": "^13.11.0",
"vercel": "^32.6.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.5.4",
"@octokit/core": "^5.0.1",
"@octokit/graphql-schema": "^14.45.0",
"@octokit/plugin-retry": "^6.0.1",
"@octokit/plugin-throttling": "^8.0.1",
"@octokit/types": "^12.0.0",
"@types/jest": "^29.5.6",
"@types/react-infinite-scroller": "^1.2.5",
"@types/validator": "^13.11.7",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.7.3",
"autoprefixer": "^10.4.16",
"eslint": "^8.52.0",
"eslint-config-next": "^14.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"postcss": "^8.4.30",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.6",
"tailwindcss": "^3.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "5.2.2"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx|json|css|md|mdx)": [
"eslint --fix"
]
}
}