-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.43 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "npm run build:css && npm run build:remix",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"dev": "concurrently \"npm run dev:css\" \"remix dev\"",
"dev:css": "npm run generate:css -- --watch",
"format": "prettier --write .",
"generate:css": "tailwindcss -o ./app/styles/tailwind.css",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"start": "remix-serve build"
},
"dependencies": {
"@prisma/client": "^4.1.0",
"@remix-run/node": "^1.7.2",
"@remix-run/react": "^1.7.2",
"@remix-run/serve": "^1.7.2",
"bcryptjs": "^2.4.3",
"marked": "^4.0.18",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@remix-run/dev": "^1.7.2",
"@remix-run/eslint-config": "^1.7.2",
"@types/bcryptjs": "^2.4.2",
"@types/marked": "^4.0.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"autoprefixer": "^10.4.7",
"concurrently": "^7.3.0",
"esbuild-register": "^3.3.3",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"prisma": "^4.1.0",
"tailwindcss": "^3.1.6",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14"
},
"prisma": {
"seed": "node --require esbuild-register prisma/seed.ts"
}
}