-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.44 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": "eshop",
"version": "1.0.0",
"scripts": {
"dev": "blitz dev",
"dev3017": "blitz dev --port 3017",
"build": "blitz build",
"start": "blitz start",
"studio": "blitz prisma studio",
"c-sync": "git add . && git commit -m fix --no-verify && git push --no-verify",
"c-sync2": "git add . && git commit -m bots2-orders-cell && git pull && git push",
"c-pull": "git fetch && git pull",
"redeploy": "pm2 stop eshop && git pull && yarn install && blitz prisma generate && blitz build && pm2 start eshop",
"start:production": "blitz start --port $PORT",
"start:prod3": "blitz start --port 3017",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"test1": "jest",
"test1:watch": "jest --watch",
"prepare": "husky install"
},
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"semi": false,
"printWidth": 100
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@blitzjs/auth": "2.0.0-beta.20",
"@fontsource/montserrat": "4.5.13",
"@hookform/resolvers": "2.9.6",
"@prisma/client": "4.10.1",
"@sentry/browser": "7.12.1",
"@sentry/integrations": "7.12.1",
"@sentry/nextjs": "7.12.1",
"@sentry/node": "7.12.1",
"@sentry/webpack-plugin": "1.19.0",
"@tailwindcss/forms": "0.5.3",
"axios": "1.3.4",
"blitz": "0.45.5",
"clsx": "1.2.1",
"flatted": "3.2.7",
"framer-motion": "7.6.19",
"jotai": "1.9.2",
"lodash": "4.17.21",
"postcss": "8.4.20",
"prettier-plugin-tailwindcss": "0.2.1",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-hook-form": "7.33.1",
"react-responsive-carousel": "3.2.23",
"react-toastify": "9.0.8",
"zod": "3.17.10"
},
"devDependencies": {
"@tailwindcss/line-clamp": "0.4.0",
"@types/lodash": "4.14.182",
"@types/postcss-import": "14.0.0",
"@types/prettier": "2.7.1",
"@types/preview-email": "2.0.1",
"@types/react": "18.0.1",
"autoprefixer": "10.4.7",
"babel-plugin-module-resolver": "4.1.0",
"eslint": "7.32.0",
"husky": "7.0.4",
"lint-staged": "13.1.0",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-import": "15.1.0",
"postcss-preset-env": "7.8.3",
"prettier": "2.7.1",
"prettier-plugin-prisma": "3.14.0",
"pretty-quick": "3.1.3",
"preview-email": "3.0.7",
"prisma": "4.10.1",
"tailwindcss": "3.1.6",
"typescript": "4.7.4"
},
"private": true
}