-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
38 lines (38 loc) · 1.01 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
{
"private": true,
"name": "remix-app-template-js",
"description": "",
"license": "",
"scripts": {
"build": "npm run build:css && remix build",
"build:css": "tailwindcss -o ./app/tailwind.css",
"dev": "concurrently \"npm run dev:css\" \"remix dev\"",
"dev:css": "tailwindcss -o ./app/tailwind.css --watch",
"lint": "eslint ./app --ext .js,.jsx,.ts,.tsx",
"postinstall": "remix setup node",
"start": "remix-serve build"
},
"dependencies": {
"@remix-run/react": "^1.1.1",
"@remix-run/serve": "^1.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"remix": "^1.1.1",
"ua-parser-js": "^1.0.2"
},
"devDependencies": {
"@remix-run/dev": "^1.1.1",
"@remix-run/node": "^1.1.3",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.6.0",
"eslint-plugin-react": "^7.28.0",
"react-twitter-widgets": "^1.10.0",
"tailwindcss": "^3.0.13"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}