-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.23 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
{
"name": "next-netlify-starter",
"version": "0.5.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"lint": "eslint '{components,pages,utils,data,layouts}/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix '{components,pages,utils,data,layouts}/**/*.{js,jsx,ts,tsx}'",
"format": "prettier --check \"{components,data,pages,styles,utils,layouts}/**/*.{js,jsx,ts,tsx,css,scss,json,yaml,md}\"",
"format:fix": "prettier --write \"{components,data,pages,styles,utils,layouts}/**/*.{js,jsx,ts,tsx,css,scss,json,yaml,md}\"",
"types:check": "tsc --pretty --noEmit",
"ci": "rm -rf node_modules && yarn install --frozen-lockfile",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.5.0",
"@next-auth/mongodb-adapter": "^1.0.1",
"@next/bundle-analyzer": "^12.1.0",
"@radix-ui/react-accordion": "^0.1.6",
"@radix-ui/react-dialog": "^0.1.5",
"@tailwindcss/forms": "^0.4.0",
"axios": "^0.26.0",
"classnames": "^2.3.1",
"date-fns": "^2.28.0",
"firebase": "^9.6.7",
"firebase-admin": "^10.0.2",
"formik": "^2.2.9",
"localforage": "^1.10.0",
"mongodb": "^4.3.1",
"mongoose": "^6.4.6",
"next": "^12.1.0",
"next-auth": "^4.9.0",
"next-seo": "^5.1.0",
"nextjs-progressbar": "^0.0.13",
"object-sizeof": "^1.6.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.2.0",
"react-icons": "^4.3.1",
"react-json-view": "^1.21.3",
"react-twemoji": "^0.4.0",
"swr": "^1.2.2",
"tailwindcss-radix": "^1.6.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@netlify/plugin-nextjs": "^4.2.7",
"@types/node": "^17.0.14",
"@types/react": "^17.0.39",
"@types/tailwindcss": "^3.0.8",
"autoprefixer": "^10.4.2",
"eslint": "^8.8.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "^12.0.10",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"postcss": "^8.4.6",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.5",
"tailwindcss": "^3.0.18",
"typescript": "^4.5.5"
}
}