-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
147 lines (147 loc) · 4.53 KB
/
Copy pathpackage.json
File metadata and controls
147 lines (147 loc) · 4.53 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
{
"name": "whatwas",
"private": true,
"license": "MIT",
"author": "https://github.com/what-was",
"sideEffects": false,
"scripts": {
"prepare": "husky install || true",
"clean": "rimraf ./node_modules/.cache ./server/dist ./build ./public/build \"./app/styles/**/*.css\"",
"build": "run-s build:*",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"dev": "run-p dev:*",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "cross-env NODE_ENV=development binode -- @remix-run/dev:remix dev",
"generate:css": "tailwindcss -i ./app/styles/app.css -o ./app/styles/tailwind.css",
"docs:serve": "npx prisma-docs-generator serve",
"setup": "npm install && docker compose up -d && prisma migrate reset --force && npm run validate && npm run test:e2e:run",
"setup:db": "prisma generate && prisma migrate deploy",
"setup:seed": "prisma db seed",
"start": "remix-serve build",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"test": "run-p lint typecheck clear test:e2e:run",
"clear": "rimraf playwright-report",
"test:e2e:dev": "playwright test",
"pretest:e2e:run": "npm run build",
"test:e2e:run": "cross-env CI=true playwright test",
"typecheck": "tsc -b",
"validate": "run-p lint typecheck test:e2e:run"
},
"prettier": {
"arrowParens": "always",
"bracketSameLine": false,
"bracketSpacing": true,
"jsxSingleQuote": false,
"plugins": [
"prettier-plugin-tailwindcss"
],
"printWidth": 80,
"proseWrap": "always",
"semi": true,
"singleAttributePerLine": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"dependencies": {
"@chakra-ui/react": "^2.4.7",
"@clerk/clerk-sdk-node": "^4.5.15",
"@clerk/remix": "^1.4.10",
"@clerk/themes": "^1.2.37",
"@clerk/types": "^3.22.2",
"@conform-to/react": "^0.4.1",
"@conform-to/zod": "^0.4.1",
"@emotion/css": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.5",
"@prisma/client": "^4.8.1",
"@remix-run/node": "^1.9.0",
"@remix-run/react": "^1.9.0",
"@remix-run/serve": "^1.9.0",
"@saas-ui/react": "^1.7.4",
"@saas-ui/sidebar": "^0.7.0",
"@saas-ui/theme": "^1.6.2",
"@saas-ui/theme-glass": "^0.2.0",
"@stytch/nextjs": "^0.5.0",
"@stytch/react": "^0.5.0",
"@stytch/stytch-react": "^4.1.1",
"@stytch/vanilla-js": "^0.5.4",
"@tabler/icons": "^1.117.0",
"@upstash/redis": "^1.19.1",
"axios": "^1.2.2",
"bcryptjs": "^2.4.3",
"bull": "^4.10.2",
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"dayjs": "^1.11.7",
"framer-motion": "^6.5.1",
"isbot": "^3.6.2",
"lodash": "^4.17.21",
"nordigen-node": "^1.2.0",
"prisma-docs-generator": "^0.5.0",
"prismjs": "^1.29.0",
"react": "18",
"react-dom": "18",
"react-icons": "^4.7.1",
"react-table": "^7.8.0",
"react-window": "^1.8.8",
"remix-auth": "^3.2.2",
"remix-auth-form": "^1.2.0",
"remix-seo": "^0.1.0",
"remix-utils": "^6.0.0",
"slate": "^0.87.0",
"slate-history": "^0.86.0",
"slate-react": "^0.87.1",
"stytch": "^5.18.0",
"tiny-invariant": "^1.3.1",
"unique-username-generator": "^1.1.3",
"zod": "^3.20.2",
"zodix": "^0.4.0"
},
"devDependencies": {
"@playwright/test": "^1.29.0",
"@remix-run/dev": "^1.9.0",
"@remix-run/eslint-config": "^1.9.0",
"@types/bcryptjs": "^2.4.2",
"@types/bull": "^4.10.0",
"@types/eslint": "^8.4.10",
"@types/node": "^18.11.17",
"@types/prismjs": "^1.26.0",
"@types/react": "18",
"@types/react-dom": "18",
"@types/react-table": "^7.7.12",
"@types/react-window": "^1.8.5",
"@types/redis": "^4.0.11",
"autoprefixer": "^10.4.11",
"binode": "^1.0.5",
"cross-env": "^7.0.3",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"prisma": "^4.8.1",
"tailwindcss": "^3.1.8",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.1",
"typescript": "^4.8.3"
},
"engines": {
"node": ">=16"
},
"prisma": {
"seed": "ts-node --require tsconfig-paths/register prisma/seed.ts"
}
}