-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.13 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "npm run build:css && remix build",
"build:css": "tailwindcss -i ./app/app.css -o ./public/app.css",
"dev": "concurrently \"npm run dev:css\" \"remix dev\"",
"dev:css": "tailwindcss -i ./app/app.css -o ./public/app.css --watch",
"postinstall": "remix setup node"
},
"dependencies": {
"@remix-run/node": "^1.6.5",
"@remix-run/react": "^1.6.5",
"@remix-run/vercel": "^1.6.5",
"@tailwindcss/typography": "^0.5.4",
"@vercel/node": "^2.4.2",
"classnames": "^2.3.1",
"concurrently": "^7.3.0",
"marked": "^4.0.18",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.4.0",
"rehype": "^12.0.1",
"rehype-highlight": "^5.0.2",
"tailwindcss": "^3.1.6"
},
"devDependencies": {
"@remix-run/dev": "^1.6.5",
"@remix-run/eslint-config": "^1.6.5",
"@remix-run/serve": "^1.6.5",
"@types/marked": "^4.0.3",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.17",
"eslint": "^8.15.0",
"prettier": "2.7.1",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14"
}
}