-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "npm run build:css && remix build",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"dev": "concurrently \"npm run dev:css\" \"remix dev\"",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css"
},
"dependencies": {
"@remix-run/node": "^1.14.0",
"@remix-run/react": "^1.14.0",
"@remix-run/vercel": "^1.14.0",
"@vercel/node": "^2.6.2",
"@zip.js/zip.js": "^2.6.78",
"classnames": "^2.3.2",
"highlight.js": "^11.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0"
},
"devDependencies": {
"@remix-run/dev": "^1.16.0",
"@remix-run/eslint-config": "^1.14.0",
"@remix-run/serve": "^1.14.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"autoprefixer": "^10.4.13",
"concurrently": "^7.6.0",
"eslint": "^8.27.0",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"tailwindcss": "^3.2.7",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=14"
}
}