-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"private": true,
"name": "remix-app-template",
"description": "",
"license": "",
"scripts": {
"postinstall": "remix setup",
"dev": "concurrently \"npm run dev:css\" \"node -r dotenv/config node_modules/.bin/remix dev\"",
"start": "remix-serve build",
"build": "npm run build:css && remix build",
"build:css": "tailwindcss -o ./app/tailwind.css",
"dev:css": "tailwindcss -o ./app/tailwind.css --watch",
"deploy": "fly deploy"
},
"dependencies": {
"@prisma/client": "^3.6.0",
"@remix-run/react": "1.3.4",
"@remix-run/serve": "1.3.4",
"cuid": "^2.1.8",
"date-fns": "^2.27.0",
"dotenv": "^10.0.0",
"lodash.debounce": "^4.0.8",
"mailgun-js": "^0.22.0",
"prisma": "^3.6.0",
"react": "^17.0.1",
"react-circular-progressbar": "^2.0.4",
"react-dom": "^17.0.1",
"remix": "1.3.4",
"slugify": "^1.6.4",
"sort-by": "^1.2.0",
"tailwindcss-neumorphism": "^0.1.0",
"tiny-invariant": "^1.2.0",
"tailwindcss": "^2.2.19"
},
"devDependencies": {
"@remix-run/dev": "1.3.4",
"@types/mailgun-js": "^0.22.12",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.4",
"concurrently": "^6.4.0",
"typescript": "^4.1.2"
},
"engines": {
"node": "16"
},
"sideEffects": false,
"prettier": {}
}