forked from Shelf-nu/shelf.nu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
141 lines (141 loc) · 4.89 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
{
"name": "shelf-webapp",
"private": true,
"sideEffects": false,
"scripts": {
"build": "remix build",
"db:diff": "prisma migrate diff --from-url=${DATABASE_URL} --to-migrations=./app/database/migrations --shadow-database-url=${SHADOW_DATABASE_URL} --script > rollback.sql",
"db:prepare-migration": "prisma migrate dev --create-only --skip-seed",
"db:deploy-migration": "prisma migrate deploy && prisma generate",
"dev": "remix dev",
"production:dev": "dotenv -e .env.production -- remix dev",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"setup": "run-s setup:db setup:seed",
"setup:db": "prisma generate && prisma migrate deploy",
"setup:seed": "prisma db seed",
"start": "remix-serve build/index.js",
"start:ci": "dotenv -- remix-serve build",
"test": "vitest",
"test:cov": "vitest --coverage",
"test:e2e:dev": "start-server-and-test dev http://localhost:3000 'npx playwright test --ui'",
"test:e2e:run": "start-server-and-test dev http://localhost:3000 'npx playwright test'",
"test:e2e:install": "npx playwright install --with-deps chromium",
"pretest:e2e:run": "npm run build",
"typecheck": "tsc -b",
"validate": "run-p \"test -- --run\" lint typecheck test:e2e:run",
"postinstall": "metronome patch @remix-run/serve",
"lint:fix": "npm run lint -- --fix",
"format-code": "npm run prettier:fix & npm run lint:fix",
"stripe:webhook": "stripe listen --forward-to localhost:3000/api/stripe-webhook",
"prepare": "husky install"
},
"dependencies": {
"@markdoc/markdoc": "^0.2.2",
"@metronome-sh/express": "^6.0.1",
"@metronome-sh/react": "^6.0.1",
"@prisma/client": "^4.16.2",
"@radix-ui/react-alert-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "2.0.4",
"@radix-ui/react-hover-card": "^1.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-select": "1.2.1",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "1.0.3",
"@radix-ui/react-toast": "1.1.3",
"@radix-ui/react-tooltip": "^1.0.6",
"@remix-run/css-bundle": "^2.0.1",
"@remix-run/node": "^2.0.1",
"@remix-run/react": "^2.0.1",
"@remix-run/serve": "^2.0.1",
"@stripe/react-stripe-js": "^2.1.1",
"@stripe/stripe-js": "^1.54.2",
"@supabase/supabase-js": "^2.26.0",
"@zxing/library": "^0.20.0",
"cookie": "^0.5.0",
"crisp-sdk-web": "^1.0.19",
"csv-parse": "^5.4.0",
"detectrtc": "^1.4.1",
"dom-to-image": "^2.6.0",
"framer-motion": "^9.1.7",
"intl-parse-accept-language": "^1.0.0",
"isbot": "^3.6.12",
"jotai": "^2.2.1",
"jszip": "^3.10.1",
"mapbox-gl": "^2.15.0",
"maplibre-gl": "^3.1.0",
"nodemailer": "^6.9.3",
"qrcode-generator": "^1.4.4",
"react": "^18.2.0",
"react-day-picker": "^8.8.2",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-map-gl": "^7.1.0",
"react-microsoft-clarity": "^1.2.0",
"react-tag-autocomplete": "^7.0.0-rc.8",
"react-to-print": "^2.14.13",
"react-zorm": "^0.6.2",
"remix-utils": "^7.0.0-pre.3",
"sharp": "^0.32.1",
"stripe": "^12.16.0",
"tailwind-merge": "^1.13.2",
"tailwindcss-animate": "^1.0.6",
"tiny-invariant": "^1.3.1",
"ua-parser-js": "^1.0.35",
"zod": "^3.21.4"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@playwright/test": "^1.34.3",
"@remix-run/dev": "^2.0.1",
"@remix-run/eslint-config": "^2.0.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/dom-to-image": "^2.6.4",
"@types/nodemailer": "^6.4.8",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@vitejs/plugin-react": "^2.2.0",
"@vitest/coverage-c8": "^0.24.5",
"cross-env": "^7.0.3",
"dotenv-cli": "^6.0.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"happy-dom": "^10.0.3",
"husky": "^8.0.0",
"msw": "^1.2.2",
"nodemailer-mock": "^2.0.1",
"npm-run-all": "^4.1.5",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"prisma": "^4.16.2",
"remix-flat-routes": "^0.5.10",
"start-server-and-test": "^1.15.5",
"tailwind-scrollbar": "^2.1.0",
"tailwindcss": "^3.3.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^3.13.0",
"typescript": "^5.1.0",
"vite-tsconfig-paths": "^3.6.0",
"vitest": "^0.24.5"
},
"overrides": {
"remix-utils": {
"@remix-run/react": "^2.0.1",
"@remix-run/server-runtime": "^2.0.1"
}
},
"engines": {
"node": ">=18"
},
"prisma": {
"schema": "app/database/schema.prisma",
"seed": "tsx app/database/seed.server.ts"
}
}