-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·104 lines (104 loc) · 3.19 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
99
100
101
102
103
104
{
"name": "kitten-app",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint --fix .",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"generate": "prisma generate",
"postinstall": "npm run generate"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@date-io/date-fns": "1.3.13",
"@material-ui/core": "^4.12.1",
"@material-ui/pickers": "^3.3.10",
"@mdx-js/loader": "^1.6.22",
"@next/mdx": "^11.1.2",
"@prisma/client": "^2.27.0",
"@supabase/supabase-js": "^1.19.0",
"@supabase/ui": "^0.29.2",
"@tailwindcss/typography": "^0.4.1",
"@types/date-fns": "^2.6.0",
"@uppy/aws-s3": "^1.7.12",
"@uppy/aws-s3-multipart": "^1.8.18",
"@uppy/core": "^1.19.2",
"@uppy/drag-drop": "^1.4.30",
"@uppy/file-input": "^1.5.2",
"@uppy/image-editor": "^0.3.0",
"@uppy/react": "^1.12.0",
"@uppy/tus": "^1.9.2",
"@uppy/webcam": "^1.8.12",
"@uppy/xhr-upload": "^1.7.5",
"apexcharts": "^3.27.2",
"aws-sdk": "^2.948.0",
"daisyui": "^1.10.0",
"date-fns": "^2.22.1",
"dateformat": "^4.5.1",
"gray-matter": "^4.0.3",
"material-table": "^1.69.3",
"ms": "^2.1.3",
"next": "^11.0.1",
"next-auth": "^3.29.0",
"next-mdx-remote": "^3.0.4",
"next-pwa": "^5.2.24",
"react": "^17.0.2",
"react-apexcharts": "^1.3.9",
"react-dom": "^17.0.2",
"react-loader-spinner": "^4.0.0",
"react-markdown": "^6.0.2",
"react-mde": "^11.5.0",
"react-select": "^4.3.1",
"react-toastify": "^8.0.2",
"react-widgets": "^5.2.0",
"remove-markdown": "^0.3.0",
"superjson": "^1.7.4",
"swr": "^0.5.5",
"uppy-plugin-image-compressor": "^1.1.0"
},
"devDependencies": {
"@types/next-auth": "^3.15.0",
"@types/node": "^16.3.3",
"@types/react": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"autoprefixer": "^10.3.1",
"babel-plugin-superjson-next": "^0.3.0",
"eslint": "^7.31.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"git-cz": "^4.7.6",
"husky": "^7.0.1",
"lint-staged": "^11.0.1",
"postcss": "^8.3.5",
"prettier": "^2.3.2",
"prisma": "^2.27.0",
"tailwindcss": "^2.2.4",
"typescript": "^4.3.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "git-cz"
}
}
}