-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.94 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "remix-template-fly",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"build": "yarn run build:css && remix build",
"build:css": "tailwindcss -m -i ./styles/main.css -o app/styles/tailwind.css",
"dev": "concurrently \"npm run dev:css\" \"cross-env NODE_ENV=development netlify dev\"",
"dev:css": "tailwindcss -w -i ./styles/main.css -o app/styles/tailwind.css",
"start": "cross-env NODE_ENV=production netlify dev",
"format": "prettier --write app",
"lint": "eslint app",
"test": "jest --watch"
},
"dependencies": {
"@netlify/functions": "^1.0.0",
"@react-three/drei": "^9.80.0",
"@react-three/fiber": "^8.13.6",
"@remix-run/netlify": "^1.5.1",
"@remix-run/node": "^1.4.3",
"@remix-run/react": "^1.4.3",
"@remix-run/serve": "^1.4.3",
"classnames": "^2.3.1",
"cross-env": "^7.0.3",
"data-fns": "^1.1.0",
"dotenv": "^16.4.5",
"isbot": "^5.1.17",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-terminal": "^1.2.1",
"remix-utils": "^3.2.0",
"three": "^0.155.0"
},
"devDependencies": {
"@remix-run/dev": "^1.4.3",
"@remix-run/eslint-config": "^1.4.3",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.0",
"@types/jest": "^28.1.1",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"autoprefixer": "^10.4.7",
"concurrently": "^7.2.1",
"eslint": "^8.11.0",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-testing-library": "^5.5.1",
"jest": "^28.1.1",
"msw": "^2.6.2",
"netlify-cli": "^10.5.1",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"tailwindcss": "^3.1.2",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=14"
},
"msw": {
"workerDirectory": [
"public"
]
}
}