-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.42 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
{
"name": "khiphop-stack",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"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": "remix dev",
"e2e-test": "cypress run",
"format": "prettier --write .",
"generate:css": "npx tailwindcss -o ./app/styles/tailwind.css",
"generate:eql": "edgeql-js --force-overwrite --output-dir ./app/db/edgeql",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"start": "cross-env NODE_ENV=production netlify dev",
"typecheck": "tsc -b",
"seed": "npx esbuild-runner dbschema/seed.ts",
"test": "vitest --passWithNoTests",
"test:cov": "vitest --coverage --passWithNoTests"
},
"prettier": {},
"eslintIgnore": [
"/netlify/functions/server",
"/node_modules",
"/public/build",
"/server/build"
],
"dependencies": {
"@clerk/remix": "^1.2.1",
"@conform-to/dom": "^0.3.0",
"@conform-to/react": "^0.3.0",
"@conform-to/zod": "^0.3.0",
"@headlessui/react": "^1.7.2",
"@netlify/functions": "^1.2.0",
"@remix-run/netlify": "^1.7.1",
"@remix-run/node": "^1.7.1",
"@remix-run/react": "^1.7.1",
"@tailwindcss/typography": "^0.5.4",
"bcryptjs": "^2.4.3",
"clsx": "^1.2.1",
"daisyui": "^2.22.0",
"edgedb": "^0.22.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.3.0",
"remix-params-helper": "^0.4.10",
"remix-utils": "^3.3.0",
"tiny-invariant": "^1.2.0",
"vitest": "^0.23.4",
"zod": "^3.19.1"
},
"devDependencies": {
"@remix-run/dev": "^1.7.1",
"@remix-run/eslint-config": "^1.7.1",
"@remix-run/serve": "^1.7.1",
"@testing-library/cypress": "^8.0.2",
"@types/bcryptjs": "^2.4.2",
"@types/eslint": "^8.4.1",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.0.0",
"cross-env": "^7.0.3",
"cypress": "^9.5.3",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"remix-flat-routes": "^0.4.4",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.3",
"vite-tsconfig-paths": "^3.5.0"
},
"engines": {
"node": ">=16"
}
}