forked from sabinadams/valleydev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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
{
"name": "remix-app-template",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"build": "npm run build:css && npm run build:remix",
"build:css": "npm run generate:css -- --minify",
"build:remix": "cross-env NODE_ENV=production remix build",
"dev": "run-p dev:*",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "cross-env NODE_ENV=development remix dev",
"generate:css": "npx tailwindcss -i ./styles/tailwind.css -o ./app/tailwind.css",
"postinstall": "remix setup node"
},
"dependencies": {
"@remix-run/react": "^1.2.3",
"@remix-run/vercel": "^1.2.3",
"npm-run-all": "^4.1.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"remix": "^1.2.3",
"tailwindcss": "^3.0.23"
},
"devDependencies": {
"@remix-run/dev": "^1.2.3",
"@remix-run/eslint-config": "^1.2.3",
"@remix-run/serve": "^1.2.3",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"cross-env": "^7.0.3",
"eslint": "^8.9.0",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=14"
}
}