-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.43 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "wanda",
"version": "0.1.0",
"private": true,
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --watch",
"lint": "eslint components/** utils/** pages/**",
"lint:fix": "eslint --fix components/** utils/** pages/**",
"generate_build": "cosmo && npx prisma generate --data-proxy && prettier --config .prettierrc prisma/generated/graphql/**/*.ts --write && next build",
"aurora": "aurora && npx prisma format",
"cosmo": "cosmo && prettier --config .prettierrc prisma/generated/graphql/**/*.ts --write",
"generate": "yarn aurora && npx prisma generate --data-proxy && yarn cosmo",
"migrate-dev": "yarn aurora && npx prisma migrate dev",
"migrate-deploy": "yarn aurora && npx prisma migrate deploy"
},
"dependencies": {
"@apollo/client": "^3.6.8",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/material": "^5.8.4",
"@next-auth/prisma-adapter": "^1.0.3",
"@prevalentware/prisma-cosmo": "^0.1.12",
"@prisma/client": "^4.2.1",
"@types/react-table": "^7.7.12",
"apexcharts": "^3.35.3",
"apollo-server-micro": "^3.9.0",
"apollo3-cache-persist": "^0.14.0",
"aws-sdk": "^2.1157.0",
"crypto": "^1.0.1",
"cuid": "^2.1.8",
"exceljs": "^4.3.0",
"file-saver": "^2.0.5",
"graphql": "^16.5.0",
"intro.js-react": "^0.6.0",
"jest-mock-extended": "^2.0.6",
"lodash": "^4.17.21",
"micro": "^9.3.4",
"nanoid": "^4.0.0",
"next": "12.1.6",
"next-auth": "^4.10.2",
"next-superjson": "^0.0.3",
"nextjs-cors": "^2.1.1",
"nodemailer": "^6.7.5",
"prisma-aurora": "^1.3.9",
"react": "18.1.0",
"react-apexcharts": "^1.4.0",
"react-dom": "18.1.0",
"react-draggable": "^4.4.5",
"react-icons": "^4.4.0",
"react-joyride": "^2.5.0",
"react-loading": "^2.0.3",
"react-media-recorder": "^1.6.5",
"react-rte": "^0.16.5",
"react-system-usability-scale": "^0.1.23",
"react-table": "^7.8.0",
"react-toastify": "^9.0.4",
"sharp": "^0.30.6",
"superjson": "^1.9.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/file-saver": "^2.0.5",
"@types/jest": "^28.1.2",
"@types/lodash": "^4.14.182",
"@types/node": "17.0.42",
"@types/nodemailer": "^6.4.4",
"@types/react": "18.0.12",
"@types/react-dom": "18.0.5",
"@types/react-rte": "^0.16.3",
"@types/reactour": "^1.18.2",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"autoprefixer": "^10.4.7",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"lint": "^0.7.0",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.11",
"prisma": "^4.2.1",
"tailwindcss": "^3.1.3",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"typescript": "4.7.3"
}
}