-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
154 lines (154 loc) · 4.75 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "almond-web",
"description": "Almond website for the hydroponics farm",
"author": "Francis Masha",
"email": "francismasha96@gmail.com",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"prettier": "prettier './src/**/*.{tsx,ts}' --write",
"eslint:fix": "eslint ./src --fix",
"codeStyle:fix": "pnpm run prettier:fix && pnpm run eslint:fix",
"husky": "pretty-quick --staged && pnpm prettier",
"prettier:fix": "prettier --write \"*/**/*.{js,ts,tsx,json}\"",
"tslint": "tsc --noEmit && eslint \"*/**/*.{js,ts}\" --quiet",
"test:unit": "cross-env NODE_ENV=testing jest -u --maxWorkers=4",
"test:coverage": "pnpm test:unit --coverage",
"test:watch": "pnpm test:unit --watch --verbose",
"prepare": "husky install",
"commit": "cz",
"commit:signed": "cz -S",
"clear-all": "rimraf ./.cache ./.next",
"test:synk": "snyk test",
"db:format": "prisma format",
"db:seed": "ts-node prisma/seed.ts",
"db:reset": "prisma migrate reset",
"db:migrate": "prisma migrate",
"db:rollback": "ts-node prisma/rollback.ts",
"db:seed:reset": "pnpm db:reset && pnpm db:seed",
"db:seed:migrate": "pnpm db:migrate && pnpm db:seed",
"db:seed:rollback": "pnpm db:rollback && pnpm db:seed",
"db:studio": "prisma studio"
},
"prisma": {
"seed": "ts-node --transpile-only prisma/seed.ts"
},
"dependencies": {
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.10.6",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.6",
"@hookform/resolvers": "^2.9.11",
"@mui/icons-material": "^5.11.9",
"@mui/lab": "^5.0.0-alpha.120",
"@mui/material": "^5.11.10",
"@mui/styles": "^5.11.9",
"@mui/x-data-grid": "next",
"@mui/x-date-pickers": "^5.0.19",
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^4.10.1",
"@react-spring/web": "^9.6.1",
"@reduxjs/toolkit": "^1.9.3",
"@tanstack/react-query": "^4.24.9",
"@trpc/client": "^10.12.0",
"@trpc/next": "^10.12.0",
"@trpc/react-query": "^10.12.0",
"@trpc/server": "^10.12.0",
"aos": "^2.3.4",
"axios": "^1.3.3",
"axios-cache-adapter": "^2.7.3",
"chart.js": "^4.2.1",
"cloudinary": "^1.34.0",
"date-fns": "^2.29.3",
"dayjs": "^1.11.7",
"dequal": "^2.0.3",
"esbuild": "^0.17.10",
"formik": "^2.2.9",
"gray-matter": "^4.0.3",
"image-size": "^1.0.2",
"jarallax": "^2.1.3",
"js-cookie": "^3.0.1",
"luxon": "^3.2.1",
"mdx-bundler": "^9.2.1",
"mqtt": "^4.3.7",
"next": "^13.1.6",
"next-auth": "^4.19.2",
"next-seo": "^5.15.0",
"react": "^18.2.0",
"react-beforeunload": "^2.5.3",
"react-chartjs-2": "^5.2.0",
"react-countup": "^6.4.1",
"react-dom": "^18.2.0",
"react-hexgrid": "beta",
"react-hook-form": "^7.43.1",
"react-imask": "^6.4.3",
"react-intersection-observer": "^9.4.2",
"react-lazy-load-image-component": "^1.5.6",
"react-redux": "^8.0.5",
"react-rough-notation": "^1.0.3",
"react-slick": "^0.29.0",
"redux": "^4.2.1",
"slick-carousel": "^1.8.1",
"superjson": "^1.12.2",
"unist-util-visit": "^4.1.2",
"validate.js": "^0.13.1",
"yup": "^1.0.0",
"zod": "^3.20.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/aos": "^3.0.4",
"@types/js-cookie": "^3.0.3",
"@types/node": "^18.14.0",
"@types/react": "^18.0.28",
"@types/react-beforeunload": "^2.1.1",
"@types/react-dom": "^18.0.11",
"@types/react-lazy-load-image-component": "^1.5.2",
"@types/react-redux": "^7.1.25",
"@types/redux-logger": "^3",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"cross-env": "^7.0.3",
"eslint": "8.34.0",
"eslint-config-next": "^13.1.6",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-testing-library": "^5.10.2",
"husky": "^8.0.3",
"jest": "^29.4.3",
"jest-canvas-mock": "^2.4.0",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3",
"prisma": "^4.10.1",
"react-test-renderer": "^18.2.0",
"redux-logger": "^3.0.6",
"snyk": "^1.1106.0",
"ts-node": "^10.9.1",
"typescript": "5.0.0-beta"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}