forked from Ovyerus/selwyn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.26 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
{
"name": "selwyn",
"version": "1.0.0",
"description": "A dead simple Next.js redirection service.",
"main": "index.js",
"author": "Ovyerus <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "next build",
"build:vercel": "prisma migrate deploy && next build",
"dev": "next",
"generate": "prisma generate",
"lint": "eslint --ext js,jsx,ts,tsx .",
"lint:fix": "yarn lint --fix",
"migrate": "prisma migrate deploy",
"migrate:dev": "prisma migrate dev",
"migrate:create": "prisma migrate dev --create-only",
"start": "next start",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.4.1",
"@iconify/icons-gg": "^1.1.0",
"@iconify/icons-simple-icons": "^1.1.49",
"@iconify/react": "^3.0.1",
"@prisma/client": "3.3.0",
"avoca": "^1.3.4",
"classcat": "^5.0.3",
"cookie": "^0.4.1",
"framer-motion": "^5.0.1",
"geoip-country": "^4.0.92",
"jose": "^4.1.4",
"murmurhash": "^2.0.0",
"next": "^12.0.2",
"rambda": "^6.9.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-imask": "^6.2.2",
"react-use": "^17.3.1",
"superjson": "^1.8.0",
"ts-node": "^10.4.0",
"zod": "^3.11.6",
"zustand": "^3.6.2"
},
"devDependencies": {
"@tailwindcss/forms": "^0.3.4",
"@types/cookie": "^0.4.1",
"@types/geoip-country": "^4.0.0",
"@types/murmurhash": "^2.0.0",
"@types/node": "^16.11.6",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"autoprefixer": "^10.4.0",
"babel-plugin-superjson-next": "^0.4.2",
"eslint": "^7.27.0",
"eslint-config-clarity": "^0.6.1",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.4",
"imask": "^6.2.2",
"lint-staged": "^11.2.6",
"postcss": "^8.3.11",
"postcss-nested": "^5.0.6",
"prettier": "^2.4.1",
"prisma": "3.3.0",
"tailwindcss": "^2.2.19",
"typescript": "4.4.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "yarn lint:fix"
}
}