-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.4 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "npm run build:css && npm run build:worker && npm run partytown && remix build",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"partytown": "partytown copylib public/~partytown",
"build:worker": "esbuild ./app/entry.worker.ts --outfile=./public/entry.worker.js --minify --bundle --format=esm --define:process.env.NODE_ENV='\"production\"'",
"dev:worker": "esbuild ./app/entry.worker.ts --outfile=./public/entry.worker.js --bundle --format=esm --define:process.env.NODE_ENV='\"development\"' --watch",
"dev:debug": "concurrently \"npm run dev:css\" \"npm run dev:worker\" \"remix --debug dev\"",
"dev": "concurrently \"npm run dev:css\" \"npm run dev:worker\" \"remix dev\"",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css",
"start": "cross-env NODE_ENV=production netlify dev",
"typecheck": "tsc -b",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"@builder.io/partytown": "^0.7.5",
"@netlify/functions": "^1.3.0",
"@priyang/react-component-lib": "^1.0.3",
"@react-spring/web": "^9.5.2",
"@remix-run/netlify": "^1.11.1",
"@remix-run/node": "^1.11.1",
"@remix-run/react": "^1.11.1",
"@vercel/node": "^2.4.4",
"clsx": "^1.2.1",
"cross-env": "^7.0.3",
"daisyui": "^2.22.0",
"date-fns": "^2.29.3",
"esbuild": "^0.15.10",
"isbot": "^3.6.5",
"lru-cache": "^7.14.1",
"match-sorter": "^6.3.1",
"mdx-bundler": "^9.0.1",
"node-cache": "^5.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-visibility-sensor": "^5.1.1",
"rehype-slug": "4.0.1",
"remix-utils": "^4.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@remix-run/dev": "^1.11.1",
"@remix-run/eslint-config": "^1.11.1",
"@remix-run/serve": "^1.11.1",
"@tailwindcss/typography": "^0.5.7",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@types/uuid": "^8.3.4",
"autoprefixer": "^10.4.13",
"concurrently": "^7.6.0",
"eslint": "^8.27.0",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-simple-import-sort": "^9.0.0",
"postcss": "^8.4.20",
"prettier-plugin-tailwindcss": "^0.1.13",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=14"
}
}