-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.31 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
{
"name": "remix-tailwind-threejs-template",
"author": "@ansonlichtfuss",
"description": "",
"license": "MIT",
"scripts": {
"build": "npm run build:css && remix build",
"build:css": "tailwindcss -i ./app/styles/app.css -o ./app/tailwind.css --minify",
"typecheck": "tsc -b",
"dev": "concurrently \"npm run dev:css\" \"remix dev\"",
"dev:css": "tailwindcss -i ./app/styles/app.css -o ./app/tailwind.css --watch",
"postinstall": "remix setup node"
},
"dependencies": {
"@react-three/fiber": "^8.0.27",
"@remix-run/react": "^1.6.3",
"@remix-run/serve": "^1.6.3",
"@remix-run/vercel": "1.6.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix": "1.6.3",
"three": "^0.142.0"
},
"devDependencies": {
"@remix-run/dev": "^1.6.3",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/three": "^0.141.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"autoprefixer": "^10.4.7",
"concurrently": "^7.2.2",
"eslint": "^8.18.0",
"eslint-plugin-prettier": "^4.1.0",
"eslint-plugin-react": "^7.30.1",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.4",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}