-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.6 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
{
"name": "portal",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"browserslist": [
"defaults and supports es6-module",
"maintained node versions"
],
"dependencies": {
"@auth/prisma-adapter": "^1.0.1",
"@aws-sdk/client-cognito-identity": "^3.391.0",
"@aws-sdk/client-s3": "^3.391.0",
"@aws-sdk/credential-provider-cognito-identity": "^3.391.0",
"@aws-sdk/types": "^3.391.0",
"@fontsource/inter": "^4.5.15",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-regular-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@prisma/client": "5.0.0",
"@types/dompurify": "^3.0.2",
"@types/node": "18.15.11",
"@types/react": "18.0.35",
"@types/react-color": "^3.0.6",
"@types/react-dom": "18.0.11",
"autoprefixer": "10.4.14",
"bcryptjs": "^2.4.3",
"chart.js": "^4.3.3",
"classnames": "^2.3.2",
"dompurify": "^3.0.5",
"eslint": "8.38.0",
"eslint-config-next": "13.4.13",
"next": "13.4.13",
"next-auth": "^4.23.1",
"normalize.css": "^8.0.1",
"postcss": "8.4.22",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^15.1.0",
"postcss-preset-env": "^8.5.1",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-color": "^2.19.3",
"react-dom": "18.2.0",
"react-rnd": "^10.4.1",
"react-select": "^5.7.4",
"sass": "^1.65.1",
"tailwindcss": "3.3.1",
"toml": "^3.0.0",
"typescript": "5.0.4",
"winston": "^3.10.0"
},
"devDependencies": {
"@aws-sdk/credential-providers": "^3.391.0",
"@aws-sdk/hash-node": "^3.374.0",
"@aws-sdk/protocol-http": "^3.374.0",
"@aws-sdk/s3-request-presigner": "^3.391.0",
"@aws-sdk/url-parser": "^3.374.0",
"@aws-sdk/util-format-url": "^3.391.0",
"@types/bcryptjs": "^2.4.2",
"@types/concat-stream": "^2.0.0",
"@types/google.maps": "^3.53.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"prisma": "^5.1.1",
"ts-node": "^10.9.1"
}
}