-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.21 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
{
"private": true,
"name": "fcc-dallas",
"description": "fcc dallas website",
"scripts": {
"build": "cross-env NODE_ENV=production remix build",
"dev": "cross-env NODE_ENV=development run-p dev:*",
"postinstall": "remix setup cloudflare-pages",
"dev:remix": "remix watch",
"dev:wrangler": "wrangler pages dev ./public --watch ./public",
"start": "npm run dev:wrangler",
"lint:staged": "eslint --fix",
"check-types": "tsc",
"format": "prettier-eslint --write \"./**/*.{ts,tsx,js,jsx,json,yaml,mdx}\"",
"format:staged": "git-format-staged -f \"prettier --write --stdin-filepath \"{}\"\" \"*.ts\" \"*.tsx\""
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.16",
"@remix-run/cloudflare-pages": "^1.1.1",
"@remix-run/react": "^1.1.1",
"@supabase/supabase-js": "^1.29.1",
"@types/animejs": "^3.1.4",
"animejs": "^3.2.1",
"date-fns": "^2.28.0",
"pipe-ts": "^0.0.9",
"react": "^17.0.2",
"react-data-table-component": "^7.5.3",
"react-datepicker": "^4.8.0",
"react-dom": "^17.0.2",
"react-hook-form": "^7.22.5",
"remix": "^1.1.1",
"styled-components": "^5.3.6",
"ts-pattern": "^4.0.5"
},
"devDependencies": {
"@arkweid/lefthook": "^0.7.7",
"@cloudflare/workers-types": "^3.2.0",
"@remix-run/dev": "^1.1.1",
"@types/react": "^17.0.24",
"@types/react-datepicker": "^4.4.2",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"cross-env": "^7.0.3",
"esbuild": "0.13.14",
"eslint": "7",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"git-format-staged": "^2.1.3",
"npm-run-all": "^4.1.5",
"prettier": "2.5.1",
"prettier-eslint": "^13.0.0",
"prettier-eslint-cli": "^5.0.1",
"typescript": "^4.1.2",
"wrangler": "alpha"
},
"engines": {
"node": ">=14"
},
"sideEffects": false,
"main": "dist/worker.js"
}