-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 2.3 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
82
83
84
{
"name": "scoutmachine",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "yarn generate && yarn push && next build",
"start": "next start",
"lint": "next lint && prettier --write .",
"document": "yarn typedoc --out TS-docs",
"generate": "npx prisma generate",
"format": "npx prisma format",
"check-code-format": "prettier --check .",
"push": "yarn format && npx prisma db push",
"studio": "npx prisma studio",
"semantic-commit": "commitlint -E HUSKY_GIT_PARAMS"
},
"dependencies": {
"@headlessui/react": "^1.7.15",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.0.0",
"@tensorflow/tfjs": "^4.8.0",
"@tippyjs/react": "^4.2.6",
"@types/color-convert": "^2.0.0",
"@types/node": "20.3.2",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@types/react-transition-group": "^4.4.6",
"@vercel/analytics": "^1.0.1",
"autoprefixer": "10.4.14",
"axios": "^1.4.0",
"chalk": "^5.3.0",
"color-convert": "^2.0.1",
"currency-codes": "^2.1.0",
"eslint": "8.43.0",
"eslint-config-next": "13.4.7",
"export-from-json": "^1.7.2",
"framer-motion": "^10.12.18",
"haversine-distance": "^1.2.1",
"lodash": "^4.17.21",
"lucide-react": "^0.257.0",
"next": "13.4.7",
"next-api-handler": "^0.4.10",
"next-auth": "^4.22.1",
"next-pwa": "^5.6.0",
"next-s3-upload": "^0.3.0",
"nsfwjs": "^2.4.2",
"postcss": "8.4.24",
"prisma": "^5.0.0",
"react": "18.2.0",
"react-countup": "^6.4.2",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-google-autocomplete": "^2.7.3",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.9.0",
"react-transition-group": "^4.4.5",
"sharp": "^0.32.1",
"tailwindcss": "3.3.2",
"tailwindcss-animate": "^1.0.6",
"typescript": "5.1.6",
"use-debounce": "^9.0.4",
"yup": "^1.2.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.6.6",
"@commitlint/cli": "^17.6.6",
"@types/lodash": "^4.14.195",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"typedoc": "^0.24.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn lint",
"git add"
]
}
}