-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.36 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": "libre-billboardoo-frontend",
"private": true,
"sideEffects": false,
"scripts": {
"build": "npm-run-all -p build:*",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"dev": "npm-run-all -p dev:*",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css",
"start": "remix-serve build",
"build:remix": "cross-env NODE_ENV=production remix build",
"build:worker": "esbuild ./app/entry.worker.ts --outfile=./public/entry.worker.js --minify --bundle --format=esm --define:process.env.NODE_ENV='\"production\"'",
"dev:remix": "cross-env NODE_ENV=development remix dev",
"dev:worker": "esbuild ./app/entry.worker.ts --outfile=./public/entry.worker.js --bundle --format=esm --define:process.env.NODE_ENV='\"development\"' --watch",
"postinstall": "remix-esbuild-override"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.6",
"@headlessui/react": "^1.7.10",
"@heroicons/react": "^2.0.17",
"@linaria/core": "^4.2.2",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.11.15",
"@remix-run/node": "^1.7.0",
"@remix-run/react": "^1.18.0",
"@remix-run/serve": "^1.13.0",
"@remix-run/server-runtime": "^1.7.2",
"cross-env": "^7.0.3",
"dayjs": "^1.11.6",
"dotenv": "^16.0.3",
"framer-motion": "^9.0.2",
"hamburger-react": "^2.5.0",
"node-persist": "^3.1.3",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-fast-marquee": "^1.3.5",
"react-responsive": "9.0.2",
"react-virtuoso": "^3.1.3",
"react-youtube": "^10.1.0",
"web-push": "^3.4.5"
},
"devDependencies": {
"@linaria/esbuild": "^4.2.9",
"@remix-run/dev": "^1.18.0",
"@remix-run/eslint-config": "^1.9.0",
"@tailwindcss/forms": "^0.5.3",
"@types/node-persist": "^3.1.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.57.0",
"autoprefixer": "^10.4.13",
"concurrently": "^7.6.0",
"esbuild": "^0.16.10",
"eslint": "^8.27.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"postcss": "^8.4.18",
"remix-esbuild-override": "^3.0.4",
"remix-pwa": "^1.1.2",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=14"
}
}