-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.67 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
{
"name": "kisalt",
"description": "URL Shortener app",
"private": true,
"version": "1.0.0",
"author": {
"name": "Ahmad Muslih Zain",
"email": "[email protected]",
"url": "https://ahmadmuslih.space"
},
"license": "Apache License",
"scripts": {
"dev": "next dev",
"build": "NODE_ENV=production next build",
"start": "next start",
"check-types": "tsc --pretty",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
"prepare": "husky install",
"lint": "next lint"
},
"dependencies": {
"@heroicons/react": "^1.0.5",
"@supabase/supabase-js": "^1.30.3",
"chart.js": "^3.7.1",
"clsx": "^1.1.1",
"copy-to-clipboard": "^3.3.1",
"formik": "^2.2.9",
"nanoid": "^3.3.1",
"next": "^12.1.0",
"next-pwa": "^5.4.5",
"next-seo": "^5.1.0",
"react": "17.0.2",
"react-chartjs-2": "^4.0.1",
"react-countup": "^6.1.1",
"react-dom": "17.0.2",
"swr": "^1.2.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/typography": "^0.5.2",
"@types/gtag.js": "^0.0.8",
"@types/node": "^12.12.21",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"autoprefixer": "^10.4.2",
"eslint": "^8.9.0",
"eslint-config-next": "^12.1.0",
"husky": "^7.0.0",
"next-sitemap": "^2.5.4",
"postcss": "^8.4.6",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.7",
"tailwindcss": "^3.0.23",
"typescript": "^4.5.5"
}
}