-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.57 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
{
"name": "cityschedules.us",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix build",
"deploy-staging": "wrangler deploy --env staging",
"deploy-production": "wrangler deploy",
"dev": "remix dev --manual -c \"npm start\"",
"start": "wrangler dev ./build/index.js",
"typecheck": "tsc",
"format": "prettier --write .",
"lint": "eslint ./app",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"@cloudflare/kv-asset-handler": "^0.1.3",
"@mantine/core": "^7.3.2",
"@mantine/hooks": "^7.3.2",
"@remix-run/cloudflare": "^2.3.1",
"@remix-run/css-bundle": "^2.3.1",
"@remix-run/react": "^2.3.1",
"@tabler/icons-react": "^2.44.0",
"date-fns": "^3.3.1",
"isbot": "^3.6.8",
"lodash": "^4.17.21",
"nanoid": "^5.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zod-form-data": "^2.0.2"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230518.0",
"@remix-run/dev": "^2.3.1",
"@remix-run/eslint-config": "^2.3.1",
"@types/lodash": "^4.14.202",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"eslint": "^8.38.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.1",
"postcss": "^8.4.32",
"postcss-preset-mantine": "^1.12.1",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.1.1",
"typescript": "^5.1.6",
"wrangler": "3.8.0"
},
"engines": {
"node": ">=18.0.0"
}
}