-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
79 lines (79 loc) · 2.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
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
{
"name": "remix-blocks",
"homepage": "https://remixblocks.com",
"repository": "https://github.com/AlexandroMtzG/remix-blocks",
"bugs": "https://github.com/AlexandroMtzG/remix-blocks/issues",
"author": "Alexandro Martinez",
"private": false,
"license": "MIT",
"sideEffects": false,
"prisma": {
"seed": "node --require esbuild-register prisma/seed.ts"
},
"scripts": {
"build": "npm run build:css && cross-env NODE_ENV=production remix build",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"dev": "concurrently \"npm run dev:css\" \"cross-env NODE_ENV=development remix dev\"",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css",
"lint": "eslint --ext .tsx,.ts ."
},
"dependencies": {
"@headlessui/react": "^1.5.0",
"@heroicons/react": "^1.0.6",
"@prisma/client": "^3.14.0",
"@remix-run/node": "1.14.3",
"@remix-run/react": "1.14.3",
"@remix-run/vercel": "1.14.3",
"@stripe/stripe-js": "^1.25.0",
"@types/postmark": "^2.0.3",
"@types/stripe": "^8.0.417",
"bcryptjs": "^2.4.3",
"browser-image-compression": "^1.0.17",
"clsx": "^1.1.1",
"hyperformula": "^2.0.0",
"i18next": "^21.6.14",
"marked": "^4.0.14",
"metronome-sh": "^1.3.2",
"moment": "^2.29.4",
"numeral": "^2.0.6",
"octokit": "^1.7.1",
"pdfjs-dist": "2.9.359",
"postmark": "^3.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.16.1",
"react-table": "^7.7.0",
"rehype-highlight": "^5.0.2",
"remix-i18next": "^3.0.0",
"remix-utils": "^3.0.0",
"spin-delay": "^1.1.0",
"stripe": "^8.211.0"
},
"devDependencies": {
"@remix-run/dev": "1.14.3",
"@remix-run/eslint-config": "1.14.3",
"@remix-run/serve": "1.14.3",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.1",
"@tailwindcss/typography": "^0.5.0",
"@types/bcryptjs": "^2.4.2",
"@types/marked": "^4.0.3",
"@types/react": "^17.0.44",
"@types/react-datepicker": "^4.3.4",
"@types/react-dom": "^17.0.15",
"@types/react-table": "^7.7.11",
"autoprefixer": "^10.4.4",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"esbuild-register": "^3.3.2",
"eslint": "^8.11.0",
"postcss": "^8.4.12",
"prisma": "^3.14.0",
"tailwindcss": "^3.0.23",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=14"
}
}