-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
166 lines (166 loc) · 7.29 KB
/
package.json
File metadata and controls
166 lines (166 loc) · 7.29 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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"name": "tooltrack",
"version": "0.1.0",
"private": true,
"engineStrict": true,
"engines": {
"node": ">=20"
},
"scripts": {
"validate-node-version": "ts-node --project=./tsconfig.json src/support/enforce-node-version.ts",
"manual-dev-env-setup": "dotenv -e .env -e .env.development -e .env.local -e .env.development.local -o",
"manual-prod-env-setup": "dotenv -e .env -e .env.production -e .env.local -e .env.production.local -o",
"postinstall": "pnpm generate-db",
"preinstall": "dotenv -e .env -e .env.local -- ts-node --project=./tsconfig.json src/support/enforce-node-version.ts",
"preadd": "dotenv -e .env -e .env .env.local -- ts-node --project=./tsconfig.json src/support/enforce-node-version.ts",
"analyze-build": "cross-env ANALYZE_BUNDLE=true pnpm build",
"build": "pnpm validate-node-version && next build",
"build:local": "pnpm validate-node-version && rm -rf ./.next && next build",
"dev": "pnpm validate-node-version && next dev",
"start": "pnpm validate-node-version && next start",
"lint": "pnpm validate-node-version && next lint",
"eslint": "pnpm validate-node-version && npx eslint .",
"eslint-fix": "pnpm validate-node-version && npx eslint . --fix",
"prettier-fix": "npx prettier . --write",
"test": "pnpm validate-node-version && jest --watchAll --silent=false",
"test:ci": "pnpm validate-node-version && jest --ci",
"tsc": "pnpm validate-node-version && tsc --project ./tsconfig.json",
"tsc:watch": "pnpm validate-node-version && tsc -w",
"create-migrations": "pnpm validate-node-version && pnpm manual-dev-env-setup -- prisma migrate dev --create-only",
"migrate-dev": "pnpm validate-node-version && pnpm manual-dev-env-setup -- prisma migrate dev",
"migrate-prod": "pnpm validate-node-version && pnpm manual-prod-env-setup -- prisma migrate dev",
"migrate-reset": "pnpm validate-node-version && NODE_OPTIONS=--max-old-space-size=32000 pnpm manual-dev-env-setup -- prisma migrate reset",
"generate-db": "pnpm validate-node-version && npx zenstack generate",
"seeddb": "pnpm validate-node-version && pnpm manual-dev-env-setup -- cross-env NODE_ENV=development prisma db seed",
"pullenv": "vercel env pull ./.env --environment=development",
"pullenv-prod": "vercel env pull ./.env --environment=production",
"jsonify-fixtures": "pnpm validate-node-version && pnpm manual-dev-env-setup -- npx tsx --tsconfig ./tsconfig.json src/scripts/jsonify/index.ts --live && pnpm format-json-fixtures",
"format-json-fixtures": "npx prettier ./src/database/fixtures/json/*.json --write --ignore-path=./.prettierignore",
"seed-users": "pnpm validate-node-version && pnpm manual-dev-env-setup -- npx tsx --tsconfig ./tsconfig.json src/scripts/seed-users/index.ts",
"scrape": "pnpm validate-node-version && pnpm manual-dev-env-setup -- npx tsx --tsconfig ./tsconfig.json src/scripts/scrape/index.ts",
"scrape-product": "pnpm validate-node-version && pnpm manual-dev-env-setup -- npx tsx --tsconfig ./tsconfig.json src/scripts/scrape-product/index.ts",
"simulate-product-records": "pnpm validate-node-version && pnpm manual-dev-env-setup -- npx tsx --tsconfig ./tsconfig.json src/scripts/simulate-product-records/index.ts",
"simulate-notifications": "pnpm validate-node-version && pnpm manual-dev-env-setup -- npx tsx --tsconfig ./tsconfig.json src/scripts/simulate-notifications/index.ts",
"simulate-user-subscription": "pnpm validate-node-version && pnpm manual-dev-env-setup -- npx tsx --tsconfig ./tsconfig.json src/scripts/simulate-user-subscription/index.ts",
"process-subscriptions": "pnpm validate-node-version && pnpm manual-dev-env-setup -- npx tsx --tsconfig ./tsconfig.json src/scripts/process-subscriptions/index.ts"
},
"dependencies": {
"@clerk/clerk-sdk-node": "^4.13.16",
"@clerk/nextjs": "^5.0.6",
"@clerk/themes": "^1.7.14",
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@floating-ui/react": "^0.26.9",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@hookform/resolvers": "^3.3.4",
"@mantine/core": "7.6.1",
"@mantine/dates": "7.6.1",
"@mantine/dropzone": "7.6.1",
"@mantine/hooks": "7.6.1",
"@mui/base": "5.0.0-beta.40",
"@prettier/sync": "^0.5.2",
"@prisma/client": "5.8.0",
"@sentry/nextjs": "^8.20.0",
"@tailwindcss/container-queries": "^0.1.1",
"@types/qs": "^6.9.15",
"@vercel/analytics": "^1.2.2",
"@vercel/blob": "^0.22.3",
"@vercel/speed-insights": "^1.0.10",
"@visx/axis": "^3.10.1",
"@visx/brush": "^3.10.4",
"@visx/curve": "^3.3.0",
"@visx/event": "^3.3.0",
"@visx/gradient": "^3.3.0",
"@visx/group": "^3.3.0",
"@visx/hierarchy": "^3.3.0",
"@visx/mock-data": "^3.3.0",
"@visx/pattern": "^3.3.0",
"@visx/responsive": "^3.10.2",
"@visx/scale": "^3.5.0",
"@visx/shape": "^3.5.0",
"@visx/tooltip": "^3.3.0",
"@visx/vendor": "^3.5.0",
"@visx/visx": "^3.11.0",
"@zenstackhq/runtime": "2.3.3",
"chart.js": "^4.4.1",
"cheerio": "1.0.0-rc.12",
"clsx": "^2.1.0",
"domhandler": "^5.0.3",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.3.0",
"enumerated-literals": "^1.2.8",
"framer-motion": "^10.18.0",
"htmlparser2": "^9.1.0",
"lodash-es": "^4.17.21",
"luxon": "^3.4.4",
"next": "14.2.5",
"next-client-cookies": "^1.1.1",
"pino": "^8.17.2",
"pino-pretty": "^10.3.1",
"prettier": "^3.2.5",
"prisma": "^5.8.0",
"qs": "^6.12.1",
"react": "^18",
"react-dom": "^18",
"react-dropzone-esm": "^15.0.1",
"react-hook-form": "^7.49.3",
"react-html-parser": "^2.0.2",
"react-is": "^18.2.0",
"react-toastify": "^10.0.4",
"sass": "^1.69.7",
"semver": "^7.5.4",
"server-only": "^0.0.1",
"superjson": "^2.2.1",
"swr": "^2.2.4",
"tailwind-merge": "^2.4.0",
"tsx": "^4.19.0",
"use-debounce": "^10.0.0",
"usehooks-ts": "^3.1.0",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@next/bundle-analyzer": "^14.0.4",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@types/eslint": "^8.56.1",
"@types/jest": "^29.5.11",
"@types/lodash-es": "^4.17.12",
"@types/luxon": "^3.4.2",
"@types/node": "^20.16.1",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-html-parser": "^2.0.6",
"@types/react-is": "^18.2.4",
"@types/semver": "^7.5.6",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"autoprefixer": "^10.4.16",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-expect-message": "^1.1.3",
"jest-runner-eslint": "^2.1.2",
"jest-runner-prettier": "^1.0.0",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "~5.5.4",
"utility-types": "^3.10.0",
"zenstack": "2.3.3"
},
"prisma": {
"schema": "src/database/prisma/schema.prisma",
"seed": "npx tsx --tsconfig ./tsconfig.json src/scripts/seed/index.ts"
},
"zenstack": {
"schema": "./src/database/zenstack/schema.zmodel"
}
}