This repository has been archived by the owner on Mar 31, 2024. It is now read-only.
generated from dalbitresb12/next-typescript-tailwind-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.53 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "easyleasing-app",
"description": "Financial leasing calculator app using Next.js and Cloudflare Workers.",
"author": "EasyLeasing <[email protected]>",
"version": "1.0.0",
"private": true,
"scripts": {
"algorithm": "node algorithm/index.mjs",
"dev": "concurrently -s -n dev: 'yarn:dev:*'",
"dev:next": "next dev --port 3001",
"dev:wrangler": "wrangler pages dev --port 3000 --proxy 3001 --compatibility-date 2022-11-16 --kv users --kv leasings --r2 uploads --persist",
"build": "next build",
"start": "wrangler pages dev --port 3000 out/ --compatibility-date 2022-11-16 --kv users --kv leasings --r2 uploads --persist",
"start:next": "next start",
"export": "next export",
"analyze": "ANALYZE=true next build",
"postinstall": "husky install",
"wrangler": "wrangler",
"lint": "concurrently -s -n lint: 'yarn:lint:*(!fix)'",
"lint:ts:root": "tsc --noemit -p .",
"lint:ts:functions": "tsc --noemit -p functions/",
"lint:eslint": "eslint --cache --ext .js,.jsx,.ts,.tsx .",
"lint:css": "stylelint --cache **/*.css",
"lint:prettier": "prettier --check .",
"lint:fix": "concurrently -s -n lint:fix: 'yarn:lint:fix:*'",
"lint:fix:eslint": "eslint --cache --ext .js,.jsx,.ts,.tsx --fix .",
"lint:fix:css": "stylelint --cache --fix **/*.css",
"lint:fix:prettier": "prettier --write ."
},
"dependencies": {
"@headlessui/react": "^1.7.4",
"@hookform/resolvers": "^2.9.10",
"@lukemorales/query-key-factory": "^1.0.3",
"@material-symbols/svg-400": "^0.2.15",
"@next/bundle-analyzer": "13.0.2",
"@tanstack/react-query": "^4.16.1",
"@tanstack/react-query-devtools": "^4.16.1",
"@tsndr/cloudflare-worker-jwt": "^2.1.2",
"autoprefixer": "^10.4.13",
"bcryptjs": "^2.4.3",
"clsx": "^1.2.1",
"concurrently": "^7.5.0",
"financial": "^0.1.3",
"gray-matter": "^4.0.3",
"ms": "^2.1.3",
"next": "13.0.2",
"postcss": "^8.4.18",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.39.4",
"react-merge-refs": "^2.0.1",
"react-spinners": "^0.13.6",
"remark": "^14.0.2",
"remark-html": "^15.0.1",
"tailwindcss": "^3.2.2",
"uuid": "^9.0.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.18.0",
"@next/eslint-plugin-next": "13.0.2",
"@svgr/webpack": "^6.5.1",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.8",
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"@types/bcryptjs": "^2.4.2",
"@types/inquirer": "^9.0.3",
"@types/ms": "^0.7.31",
"@types/node": "^16.18.3",
"@types/prettier": "^2.7.1",
"@types/react": "^18.0.25",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"eslint-config-next": "13.0.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.10",
"husky": "^8.0.1",
"inquirer": "^9.1.4",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"stylelint": "^14.14.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^29.0.0",
"typescript": "^4.8.4",
"wrangler": "^2.3.0"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.css": "stylelint --cache --fix",
"*.{js,jsx,ts,tsx,css,md,yml,json}": "prettier --write"
},
"resolutions": {
"wrangler@^2.3.0": "patch:wrangler@npm:2.3.0#.yarn/patches/wrangler-npm-2.3.0-fc5dd28b00.patch"
}
}