-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.54 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.54 KB
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
{
"name": "tech-tracker-site",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"pinger": "ts-node -r tsconfig-paths/register pinger/index.ts"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.10",
"@chakra-ui/react": "^2.3.4",
"@chakra-ui/system": "^2.2.11",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@prisma/client": "^3.11.1",
"axios": "^0.27.2",
"formik": "^2.2.9",
"framer-motion": "^6.5.1",
"ip-regex": "^5.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"next": "^12.1.1",
"next-auth": "^4.12.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-moment": "^1.1.1",
"react-toastify": "^9.0.8",
"tabler-icons-react": "^1.42.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/lodash": "^4.14.180",
"@types/node": "17.0.12",
"@types/node-cron": "^3.0.1",
"@types/ping": "^0.4.1",
"@types/react": "17.0.38",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.4",
"eslint-config-next": "12.0.9",
"node-cron": "^3.0.0",
"ping": "^0.4.1",
"pre-commit": "^1.2.2",
"prisma": "^3.11.1",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.14.1",
"typescript": "4.5.5"
},
"prisma": {
"schema": "shared/schema.prisma"
},
"pre-commit": [
"lint"
]
}