-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.3 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
{
"name": "remix-template-vercel",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:css": "npm run generate:css -- --minify",
"build:content": "contentlayer build",
"build:remix": "remix build",
"dev": "run-p dev:*",
"dev:css": "npm run generate:css -- --watch",
"dev:content": "contentlayer dev",
"dev:remix": "remix dev",
"generate:css": "npx tailwindcss -i ./app/styles/tailwind.css -o ./app/tailwind.css"
},
"dependencies": {
"@remix-run/node": "^1.6.7",
"@remix-run/react": "^1.6.7",
"@remix-run/vercel": "^1.6.7",
"@splitbee/web": "^0.3.0",
"@vercel/node": "^2.5.6",
"contentlayer": "^0.2.7",
"phosphor-react": "^1.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"reading-time": "^1.5.0",
"rehype-code-titles": "^1.1.0",
"rehype-prism-plus": "^1.4.2"
},
"devDependencies": {
"@remix-run/dev": "^1.6.7",
"@remix-run/eslint-config": "^1.6.7",
"@remix-run/serve": "^1.6.7",
"@tailwindcss/typography": "^0.5.4",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.17",
"eslint": "^8.21.0",
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.1.8",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14"
}
}