-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
90 lines (90 loc) · 3.2 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"lint:fix": "eslint --fix --ignore-path .eslintignore . --ext ts --ext tsx --ext js --ext jsx",
"format": "prettier --write .",
"test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
"prepare": "husky install",
"fix-format": "npm run lint:fix && npm run format"
},
"dependencies": {
"@auth0/nextjs-auth0": "^1.7.0",
"@emotion/core": "^10.3.1",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@headlessui/react": "^1.4.3",
"@heroicons/react": "^1.0.5",
"@iconscout/react-unicons": "^1.1.6",
"@popperjs/core": "^2.11.4",
"@reduxjs/toolkit": "^1.8.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.23",
"@types/react": "^17.0.44",
"@types/react-dom": "^17.0.13",
"@types/react-linkify": "^1.0.1",
"@types/react-redux": "^7.1.23",
"auth0": "^2.40.0",
"axios": "^0.26.0",
"babel-plugin-superjson-next": "^0.4.2",
"chart.js": "^3.8.0",
"crypto-random-string": "^4.0.0",
"email-validator": "^2.0.4",
"firebase": "^9.6.3",
"js-cookie": "^3.0.1",
"link-preview-js": "^2.1.13",
"moment": "^2.29.1",
"next": "^12.1.0",
"next-themes": "^0.0.15",
"npm-force-resolutions": "^0.0.10",
"openai": "^2.0.5",
"react": "^17.0.2",
"react-chartjs-2": "^4.1.0",
"react-content-loader": "^6.1.0",
"react-dom": "^17.0.2",
"react-firebase-hooks": "^4.0.2",
"react-hook-form": "^7.25.0",
"react-linkify": "^1.0.0-alpha",
"react-popper": "^2.2.5",
"react-query": "^3.34.16",
"react-redux": "^7.2.6",
"react-select": "^5.2.2",
"request-ip": "^2.1.3",
"tailwind-scrollbar-hide": "^1.1.7",
"unique-names-generator": "^4.6.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@iconify/react": "^3.1.4",
"@next/eslint-plugin-next": "^12.1.0",
"@types/auth0": "^2.34.13",
"@types/js-cookie": "^3.0.2",
"@types/request-ip": "0.0.37",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"autoprefixer": "^10.4.2",
"eslint": "^8.11.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tailwindcss": "^3.5.0",
"husky": "^7.0.0",
"postcss": "^8.4.8",
"prettier": "2.5.1",
"tailwind-scrollbar": "^1.3.1",
"tailwindcss": "^3.0.23",
"tailwindcss-aria-attributes": "^1.3.0",
"tailwindcss-font-inter": "^3.0.1",
"typescript": "^4.5.4"
},
"resolutions": {
"@types/react": "17.0.30"
}
}