-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.72 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.72 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
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
{
"private": true,
"scripts": {
"prepare": "husky install",
"dev": "cross-env NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"cy": "cypress open",
"cy:run": "cypress run",
"lost-pixel": "lost-pixel",
"lost-pixel:update": "lost-pixel update",
"fmt": "prisma format && prettier --write .",
"sb": "start-storybook -p 6006",
"build-sb": "BUILD_TOOL=swc build-storybook"
},
"dependencies": {
"@google-cloud/storage": "^6.7.0",
"@headlessui/react": "1.7.4",
"@heroicons/react": "2.0.13",
"@hookform/resolvers": "2.9.10",
"@next-auth/prisma-adapter": "1.0.5",
"@prisma/client": "4.6.1",
"@tensorflow-models/mobilenet": "^2.1.0",
"@tensorflow/tfjs": "^4.1.0",
"@vercel/analytics": "^0.1.5",
"axios": "^1.2.0",
"compressorjs": "^1.1.1",
"jotai": "1.10.0",
"next": "^13.0.5",
"next-auth": "4.17.0",
"next-pwa": "^5.6.0",
"next-themes": "0.2.1",
"qr-scanner": "1.4.2",
"qrcode": "^1.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "7.39.3",
"react-to-print": "2.14.10",
"swr": "^1.3.0",
"zod": "3.19.1"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@storybook/addon-actions": "^6.5.14",
"@storybook/addon-essentials": "^6.5.14",
"@storybook/addon-interactions": "^6.5.14",
"@storybook/addon-links": "^6.5.14",
"@storybook/builder-webpack5": "^6.5.14",
"@storybook/manager-webpack5": "^6.5.14",
"@storybook/react": "^6.5.14",
"@storybook/testing-library": "^0.0.13",
"@testing-library/cypress": "^8.0.7",
"@types/node": "18.11.9",
"@types/qrcode": "^1.5.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"autoprefixer": "^10.4.13",
"babel-loader": "^8.3.0",
"cross-env": "^7.0.3",
"cypress": "^11.0.0",
"cypress-social-logins": "^1.14.0",
"eslint": "^8.29.0",
"eslint-config-next": "^13.0.6",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "^0.6.8",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"postcss": "^8.4.18",
"prettier": "2.7.1",
"prettier-plugin-tailwindcss": "0.1.13",
"prisma": "4.6.1",
"storybook-addon-next": "^1.7.1",
"storybook-addon-swc": "^1.1.9",
"storybook-dark-mode": "^2.0.4",
"tailwindcss": "^3.2.2",
"typescript": "4.9.3"
},
"engines": {
"node": ">=16.13.0",
"yarn": ">=1.22.17",
"npm": "please-use-yarn"
},
"resolutions": {
"webpack": "^5"
}
}