forked from Barlow1/christianbarlow.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.95 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
{
"private": true,
"name": "christian-barlow",
"description": "",
"license": "",
"scripts": {
"build": "npm run build:css && remix build",
"build:css": "concurrently \"tailwindcss -o ./app/styles/tailwind.css\" \"postcss styles --base styles --dir app/styles --env production\"",
"dev": "concurrently \"npm run dev:css\" \"npm run dev:netlify\" \"remix watch\" \"npm run db:local\"",
"dev:css": "concurrently \"postcss styles --base styles --dir app/styles -w\"",
"postinstall": "remix setup node",
"dev:netlify": "cross-env NODE_ENV=development netlify dev",
"db:local": "docker-compose up"
},
"dependencies": {
"@balavishnuvj/remix-seo": "^1.0.2",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.19",
"@kentcdodds/md-temp": "^1.1.0",
"@netlify/functions": "^0.7.2",
"@prisma/client": "^3.15.2",
"@reach/menu-button": "^0.16.2",
"@react-spring/web": "^9.4.5",
"@remix-run/netlify": "^1.6.4",
"@remix-run/react": "^1.6.4",
"@tailwindcss/typography": "^0.5.3",
"@types/mailgun-js": "^0.22.12",
"clsx": "^1.2.1",
"esbuild": "^0.12.29",
"hamburger-react": "^2.5.0",
"mailgun-js": "^0.22.0",
"mdx-bundler": "^9.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^18.2.0",
"remark-mdx-images": "^2.0.0",
"remix": "^1.6.4",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@remix-run/dev": "^1.6.4",
"@types/react": "^17.0.47",
"@types/react-dom": "^17.0.17",
"@types/tailwindcss": "^2.2.4",
"autoprefixer": "^10.4.7",
"concurrently": "^6.5.1",
"cross-env": "^7.0.3",
"postcss": "^8.4.14",
"postcss-cli": "^9.1.0",
"prisma": "^3.15.2",
"tailwindcss": "^3.1.5",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14"
}
}