-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.5 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
{
"name": "project-sabai-biometrics",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "next",
"build": "next build",
"start": "next start",
"prepare": "husky",
"offline": "next --experimental-https"
},
"dependencies": {
"@auth0/nextjs-auth0": "^3.2.0",
"@eslint/js": "^9.6.0",
"@heroicons/react": "^2.1.3",
"axios": "^1.7.2",
"globals": "^15.6.0",
"moment": "^2.24.0",
"next": "^13.1.6",
"react": "^18.2.0",
"react-autosuggest": "^9.4.3",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-modal": "^3.10.1",
"react-sidebar": "^3.0.2",
"react-webcam": "^3.1.1",
"yarn": "^1.22.19"
},
"devDependencies": {
"@eslint/compat": "^1.1.0",
"autoprefixer": "^10.4.17",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.4.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"postcss": "^8.4.33",
"prettier": "^3.3.2",
"tailwindcss": "^3.4.1",
"vercel": "^35.0.3"
},
"lint-staged": {
"*.{js,ts,json,css,scss,md}": [
"eslint --fix",
"prettier --write"
],
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}