-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.2 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
{
"name": "supermarket-application",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"prebuild": "npm run clean && echo All clean ✨",
"build": "npm run build:css && remix build",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"clean": "rimraf .cache ./server/dist ./build ./public/build \"./app/styles/app.css\"",
"predev": "git fetch -q && git pull -q",
"dev": "run-p dev:*",
"dev:remix": "remix dev",
"dev:css": "tailwindcss -i ./styles/app.css -o app/styles/app.css --watch",
"postinstall": "prisma generate",
"setup": "npx prisma db push && npx prisma db seed"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/server": "^11.10.0",
"@heroicons/react": "^2.0.13",
"@mantine/core": "^5.9.0",
"@mantine/dates": "^5.9.0",
"@mantine/hooks": "^5.9.0",
"@mantine/modals": "^5.9.0",
"@mantine/notifications": "^5.9.0",
"html2canvas": "^1.4.1",
"jspdf": "^2.5.1",
"@mantine/remix": "^5.9.0",
"@mantine/spotlight": "^5.9.0",
"@mantine/ssr": "^5.9.0",
"@prisma/client": "^4.7.1",
"@remix-run/node": "^1.8.0",
"@remix-run/react": "^1.8.0",
"@remix-run/vercel": "^1.8.0",
"@types/react-input-mask": "^3.0.2",
"bcryptjs": "^2.4.3",
"bson": "^4.7.0",
"clean": "^4.0.2",
"clsx": "^1.2.1",
"dayjs": "^1.11.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-input-mask": "^2.0.4",
"slugify": "^1.6.5",
"tiny-invariant": "^1.3.1",
"zod": "^3.19.1"
},
"devDependencies": {
"@remix-run/dev": "^1.8.0",
"@remix-run/eslint-config": "^1.8.0",
"@remix-run/serve": "^1.8.0",
"@tailwindcss/typography": "^0.5.8",
"@types/bcryptjs": "^2.4.2",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-input-mask": "^3.0.2",
"autoprefixer": "^10.4.13",
"concurrently": "^7.6.0",
"eslint": "^8.28.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.19",
"prettier": "^2.8.0",
"prettier-plugin-tailwindcss": "^0.2.0",
"prisma": "^4.7.1",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.1",
"typescript": "^4.9.3"
},
"engines": {
"node": ">=14"
},
"prisma": {
"seed": "ts-node --require tsconfig-paths/register prisma/seed.ts"
}
}