-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.87 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
{
"name": "guardianesdelrol",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev --port 4000",
"build": "next build",
"start": "next start",
"lint": "eslint --fix . --ignore-path ./.gitignore"
},
"dependencies": {
"@gravatar/js": "^1.1.1",
"@headlessui/react": "^0.3.1",
"@reach/dialog": "^0.13.0",
"@reach/slider": "^0.13.2",
"@supabase/supabase-js": "^1.28.4",
"@tailwindcss/aspect-ratio": "^0.2.0",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/typography": "^0.3.1",
"axios": "^0.21.1",
"date-fns": "^2.17.0",
"dotenv": "^8.2.0",
"firebase": "^8.2.1",
"firebase-admin": "^9.4.2",
"form-data": "^3.0.0",
"formidable": "^1.2.2",
"fslightbox-react": "^1.6.2",
"next": "^10.0.7",
"nprogress": "^0.2.0",
"quill": "^1.3.7",
"quill-blot-formatter-mobile": "^1.1.1",
"quill-delta-to-html": "^0.12.0",
"quill-magic-url": "^3.0.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-loading-skeleton": "^2.1.1",
"react-quilljs": "^1.2.13",
"react-select": "^4.2.1",
"swr": "^0.3.11",
"tailwindcss": "^2.0.2",
"uuid": "^8.3.2",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-optional-chaining": "^7.13.8",
"@svgr/webpack": "^5.5.0",
"autoprefixer": "^10.1.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"postcss": "^8.2.1",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx}": [
"npm run lint"
]
}
}