-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.72 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": "passport",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix .",
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\" --config ./.prettierrc"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-regular-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@geist-ui/react": "^2.2.5",
"@geist-ui/react-icons": "^1.0.1",
"@vercel/node": "^1.9.1",
"@yudiel/react-qr-scanner": "^1.1.10",
"express": "^4.17.1",
"http-proxy": "^1.18.1",
"isomorphic-unfetch": "^3.1.0",
"moment": "^2.29.1",
"mongodb": "3.6.9",
"next": "^13.5.6",
"next-connect": "0.10.1",
"react": "18.2.0",
"react-bootstrap": "^2.9.1",
"react-dom": "18.2.0",
"styled-components": "^5.2.1",
"swr": "^2.2.4"
},
"devDependencies": {
"@types/node": "^18",
"@types/react": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "3.0.3",
"typescript": "^5.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
}
}