-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.5 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
{
"name": "voteec",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"main": "build/index.js",
"scripts": {
"build": "remix build",
"deploy": "wrangler publish ./build/index.js",
"dev:css": "tailwindcss -i ./app/styles/tailwind.css -o ./app/styles/app.css --watch",
"dev:remix": "remix watch",
"dev:miniflare": "cross-env NODE_ENV=development miniflare ./build/index.js --watch",
"dev": "remix build && run-p dev:*",
"postinstall": "remix setup cloudflare-workers",
"start": "cross-env NODE_ENV=production miniflare ./build/index.js"
},
"dependencies": {
"@remix-run/cloudflare-workers": "^1.3.2",
"@remix-run/react": "^1.3.2",
"cross-env": "^7.0.3",
"genie-component-library-react": "0.19.0",
"prettier-plugin-tailwindcss": "^0.1.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-fittext": "^1.0.0",
"react-parallax": "^3.3.0",
"remix": "^1.3.2",
"tailwindcss": "^3.0.16",
"wrangler": "^2.12.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^2.2.2",
"@remix-run/dev": "^1.3.2",
"@remix-run/eslint-config": "^1.3.2",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.1",
"@tailwindcss/typography": "^0.5.0",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"daisyui": "^2.8.0",
"eslint": "^8.11.0",
"miniflare": "^2.1.0",
"npm-run-all": "^4.1.5",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=14"
}
}