-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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,
"name": "remix-app-template",
"description": "",
"license": "",
"scripts": {
"postinstall": "remix setup node",
"build": "yarn run build:css && remix build",
"build:css": "tailwindcss -o ./app/tailwind.css",
"dev": "concurrently \"yarn run dev:css\" \"NODE_ENV=development netlify dev\"",
"dev:css": "tailwindcss -o ./app/tailwind.css --watch"
},
"dependencies": {
"@netlify/functions": "^0.10.0",
"@remix-run/netlify": "^1.1.1",
"@remix-run/react": "^1.1.1",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.0",
"next-share": "^0.12.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "^1.1.1",
"rough-charts": "^0.5.0",
"webpack": "^5.65.0"
},
"devDependencies": {
"@remix-run/dev": "^1.1.1",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"concurrently": "^6.5.1",
"cross-env": "^7.0.3",
"tailwindcss": "^3.0.7",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}