This repository has been archived by the owner on Dec 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.01 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
{
"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 --fix .",
"migrate": "prisma migrate deploy",
"migrate:dev": "prisma migrate dev",
"migrate:create": "prisma migrate dev --create-only",
"start": "next start"
},
"dependencies": {
"@headlessui/react": "^1.2.0",
"@iconify/icons-gg": "^1.1.0",
"@iconify/icons-simple-icons": "^1.1.27",
"@iconify/react": "^1.1.4",
"@prisma/client": "2.23.0",
"avoca": "^1.3.4",
"classcat": "^5.0.3",
"cookie": "^0.4.1",
"framer-motion": "^4.1.17",
"geoip-country": "^4.0.72",
"jose": "^3.12.3",
"murmurhash": "^2.0.0",
"next": "^10.2.3",
"rambda": "^6.7.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-imask": "^6.0.7",
"react-use": "^17.2.4",
"superjson": "^1.7.4",
"ts-node": "^10.0.0",
"zod": "^3.1.0",
"zustand": "^3.5.2"
},
"devDependencies": {
"@tailwindcss/forms": "^0.3.3",
"@types/cookie": "^0.4.0",
"@types/geoip-country": "^4.0.0",
"@types/murmurhash": "^2.0.0",
"@types/node": "^15.12.0",
"@types/react": "^17.0.9",
"@types/react-dom": "^17.0.6",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"autoprefixer": "^10.2.6",
"babel-plugin-superjson-next": "^0.3.0",
"eslint": "^7.27.0",
"eslint-config-clarity": "^0.6.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^4.2.0",
"postcss": "^8.3.0",
"postcss-nested": "^5.0.5",
"prettier": "^2.3.0",
"prisma": "2.23.0",
"tailwindcss": "^2.1.4",
"typescript": "4.2"
}
}