-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
85 lines (85 loc) · 2.39 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
{
"name": "dmod",
"version": "0.1.0",
"private": true,
"browser": {
"fs": false,
"path": false,
"os": false
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"tspretty": "tsc --pretty",
"lint": "npx eslint . --ext .ts",
"lint:fix": "npx eslint . --ext .ts --fix",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.2.0",
"@next-auth/mongodb-adapter": "^0.0.2-next.298",
"@popperjs/core": "^2.9.2",
"@y0c/react-datepicker": "^1.0.4",
"axios": "^0.24.0",
"btoa": "^1.2.1",
"crypto-js": "^4.0.0",
"dotenv": "^10.0.0",
"express-rate-limit": "^5.3.0",
"formik": "^2.2.9",
"framer-motion": "^5.3.3",
"fs": "0.0.1-security",
"husky": "^6.0.0",
"ioredis": "^4.27.6",
"markdown-it": "^12.0.6",
"moment": "^2.29.1",
"mongodb": "^4.2.0",
"mongoose": "^6.0.13",
"nanoid": "^3.1.23",
"next": "^12.0.4",
"next-auth": "^4.0.0-beta.7",
"next-iron-session": "^4.1.13",
"next-redux-wrapper": "^7.0.5",
"nprogress": "^0.2.0",
"react": "^17.0.2",
"react-datepicker": "^4.3.0",
"react-dates": "^21.8.0",
"react-dom": "^17.0.2",
"react-hook-form": "^7.3.6",
"react-popper": "^2.2.5",
"react-redux": "^7.2.3",
"react-responsive": "^9.0.0-beta.3",
"redux": "^4.0.5",
"sanitize-html": "^2.4.0",
"tailwindcss": "^2.1.2"
},
"devDependencies": {
"@types/btoa": "^1.2.3",
"@types/crypto-js": "^4.0.1",
"@types/express-rate-limit": "^5.1.3",
"@types/ioredis": "^4.26.6",
"@types/markdown-it": "^12.0.2",
"@types/node": "^16.11.10",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.6",
"@types/react-dom": "^17.0.9",
"@types/sanitize-html": "^2.3.1",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.21.0",
"autoprefixer": "^10.2.6",
"eslint": "^7.22.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"lint-staged": "^10.4.2",
"postcss": "^8.3.0",
"prettier": "^2.2.1",
"sass": "^1.32.13",
"typescript": "^4.2.4"
}
}