-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
116 lines (116 loc) · 4.23 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
{
"name": "remix-chop-suey-stack",
"description": "Remix+EdgeDB+Tailwind+Fly=🖤",
"license": "MIT",
"sideEffects": false,
"scripts": {
"remix:dev": "remix dev",
"remix:build": "remix build",
"dev": "run-p dev:'*' remix:dev",
"dev-with-mocks": "run-p dev:'*' mocks:dev",
"dev:css": "pnpm generate:css --watch",
"build": "run-s build:'*' remix:build",
"build:css": "pnpm generate:css --minify",
"mocks:dev": "ts-node -r ./mocks ./node_modules/.bin/remix dev",
"mocks:build": "tsc mocks/*.ts --outDir build/mocks",
"generate:edge": "run-p generate:edge:'*'",
"generate:edge:edgeql": "npx @edgedb/generate edgeql-js --force-overwrite --output-dir ./app/db/edgeql",
"generate:edge:types": "npx @edgedb/generate interfaces --force-overwrite --file ./app/db/types.ts",
"generate:css": "tailwindcss -i ./app/styles/main.css -o ./app/styles/tailwind.css",
"db:migrate": "edgedb migrate && pnpm generate:edge",
"start": "remix-serve build",
"start-with-mocks": "node -r dotenv/config -r ./build/mocks ./node_modules/.bin/remix-serve build",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"test": "vitest --passWithNoTests",
"test:cov": "vitest --coverage --passWithNoTests",
"test:e2e:dev": "start-server-and-test 'pnpm dev-with-mocks' http://localhost:3000 'pnpm cypress open'",
"test:e2e:run": "PORT=8811 start-server-and-test 'pnpm start-with-mocks' http://localhost:8811 'pnpm cypress run'",
"typecheck": "tsc -b && tsc -b cypress",
"validate": "run-p \"test -- --run\" lint typecheck test:e2e:run"
},
"dependencies": {
"@headlessui/react": "^1.7.7",
"@remix-run/node": "^1.11.1",
"@remix-run/react": "^1.11.1",
"@remix-run/serve": "^1.11.1",
"@remix-run/server-runtime": "^1.11.1",
"bcryptjs": "^2.4.3",
"change-case": "^4.1.2",
"daisyui": "^2.46.1",
"dotenv": "^16.0.3",
"edgedb": "^1.0.2",
"isbot": "^3.6.5",
"lodash-es": "^4.17.21",
"npm-run-all": "^4.1.5",
"postmark": "^3.0.15",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.7.1",
"react-router-dom": "^6.6.2",
"react-zorm": "^0.6.1",
"remix-auth": "^3.4.0",
"remix-auth-form": "^1.3.0",
"remix-auth-socials": "^2.0.1",
"remix-utils": "^5.2.1",
"tiny-invariant": "^1.3.1",
"zod": "^3.20.2"
},
"devDependencies": {
"@bahmutov/cypress-esbuild-preprocessor": "^2.1.5",
"@edgedb/generate": "^0.0.7-beta.2",
"@faker-js/faker": "^7.6.0",
"@remix-run/dev": "^1.11.1",
"@remix-run/eslint-config": "^1.11.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/cypress": "^9.0.0",
"@testing-library/dom": "^8.20.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/bcryptjs": "^2.4.2",
"@types/eslint": "^8.4.10",
"@types/lodash-es": "^4",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@vitejs/plugin-react": "^3.0.1",
"autoprefixer": "^10.4.13",
"c8": "^7.12.0",
"csstype": "^3.1.1",
"cypress": "^12.3.0",
"esbuild": "^0.16.16",
"esbuild-register": "^3.4.2",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-tailwindcss": "^3.8.0",
"eslint-plugin-unused-imports": "^2.0.0",
"happy-dom": "^8.1.3",
"msw": "^0.49.2",
"postcss": "^8.4.21",
"prettier": "2.8.2",
"prettier-plugin-tailwindcss": "^0.2.1",
"remix-flat-routes": "^0.5.7",
"start-server-and-test": "^1.15.2",
"tailwind-merge": "^1.8.1",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vite-tsconfig-paths": "^4.0.3",
"vitest": "^0.27.0"
},
"engines": {
"node": ">=17"
},
"packageManager": "[email protected]"
}