-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.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
{
"name": "remix-template-fly-ts",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"build": "run-p build:*",
"build:css": "npm run generate:css -- --minify",
"build:prisma": "prisma generate",
"build:remix": "cross-env NODE_ENV=production remix build",
"deploy": "fly deploy --remote-only",
"dev": "run-p dev:*",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "cross-env NODE_ENV=development remix dev",
"generate:css": "npx tailwindcss -o ./app/tailwind.css",
"postinstall": "remix setup node",
"start": "cross-env NODE_ENV=production remix-serve build"
},
"dependencies": {
"@mantine/core": "^4.0.6",
"@mantine/hooks": "^4.0.6",
"@mantine/ssr": "^4.0.6",
"@prisma/client": "^3.11.0",
"@remix-run/react": "^1.3.2",
"@remix-run/serve": "^1.3.2",
"cross-env": "^7.0.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"remix": "^1.3.2",
"remix-auth": "^3.2.1",
"remix-auth-auth0": "^1.3.4",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@remix-run/dev": "^1.3.2",
"@remix-run/eslint-config": "^1.3.2",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"eslint": "^8.11.0",
"npm-run-all": "^4.1.5",
"prisma": "^3.11.0",
"tailwindcss": "^3.0.23",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=14"
}
}