-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.58 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
{
"private": true,
"name": "remix-app-template",
"description": "",
"license": "",
"scripts": {
"build:remix": "remix build",
"dev:remix": "PORT=3333 remix dev",
"build:css": "cross-env NODE_ENV=production postcss ./app/styles/tailwind.css --output app/styles/app.css --env production",
"dev:css": "postcss ./app/styles/tailwind.css --output app/styles/app.css --watch",
"build:content": "contentlayer build",
"dev:content": "contentlayer dev",
"dev": "concurrently \"npm:dev:*\" \"npm:start\"",
"build": "concurrently \"npm:build:*\"",
"postinstall": "remix setup node",
"start": "remix-serve build"
},
"dependencies": {
"@remix-run/react": "^1.1.3",
"@remix-run/serve": "^1.1.3",
"contentlayer": "^0.0.34",
"js-yaml": "^4.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"rehype-highlight": "^5.0.2",
"remix": "^1.1.3",
"slugify": "^1.6.5",
"zod": "^3.11.6"
},
"devDependencies": {
"@remix-run/dev": "^1.1.3",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.1",
"@tailwindcss/typography": "^0.5.1",
"@types/js-yaml": "^4.0.5",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"autoprefixer": "^10.4.2",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"cssnano": "^5.0.16",
"daisyui": "^1.25.4",
"postcss": "^8.4.6",
"postcss-cli": "^9.1.0",
"postcss-import": "^14.0.2",
"tailwindcss": "^3.0.18",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}