-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.25 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
{
"name": "stickertrade",
"sideEffects": false,
"scripts": {
"build": "npm run build:css && npm run build:remix",
"build:css": "npm run generate:css -- --minify",
"build:remix": "cross-env NODE_ENV=production remix build",
"dev": "run-p dev:*",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "cross-env NODE_ENV=development remix dev",
"generate:css": "npx tailwindcss -i ./styles/tailwind.css -o ./app/tailwind.css",
"start": "cross-env NODE_ENV=production remix-serve build",
"prod": "npx prisma generate && npx prisma migrate deploy && npm run start",
"test": "vitest"
},
"prisma": {
"seed": "node --require esbuild-register prisma/seed.ts"
},
"dependencies": {
"@headlessui/react": "^1.7.3",
"@heroicons/react": "^2.0.12",
"@prisma/client": "^4.5.0",
"@remix-run/node": "^1.7.4",
"@remix-run/react": "^1.7.4",
"@remix-run/serve": "^1.7.4",
"@remix-validated-form/with-zod": "^2.0.2",
"@tanstack/react-table": "^8.5.21",
"bcryptjs": "^2.4.3",
"canvas": "^2.10.2",
"clsx": "^1.2.1",
"cross-env": "^7.0.3",
"date-fns": "^2.29.3",
"feed": "^4.2.2",
"front-matter": "^4.0.2",
"marked": "^4.1.1",
"mime-types": "^2.1.35",
"minio": "^7.0.32",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-validated-form": "^4.6.0",
"sharp": "^0.31.1",
"tiny-invariant": "^1.3.1",
"ts-dedent": "^2.2.0",
"uuid": "^9.0.0",
"uuidv4": "^6.2.13",
"zod": "^3.19.1",
"zod-form-data": "^1.2.2"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@remix-run/dev": "^1.7.4",
"@remix-run/eslint-config": "^1.7.4",
"@testing-library/jest-dom": "^5.16.5",
"@types/bcryptjs": "^2.4.2",
"@types/marked": "^4.0.7",
"@types/mime-types": "^2.1.1",
"@types/minio": "^7.0.14",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/sharp": "^0.31.0",
"@vitejs/plugin-react": "^2.2.0",
"esbuild-register": "^3.3.3",
"eslint": "^8.26.0",
"happy-dom": "^7.6.6",
"npm-run-all": "^4.1.5",
"prisma": "^4.5.0",
"tailwindcss": "^3.2.1",
"typescript": "^4.8.4",
"vite-tsconfig-paths": "^3.5.2",
"vitest": "^0.24.3"
},
"engines": {
"node": ">=14"
}
}