-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.06 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
105
106
107
108
109
110
111
112
113
114
115
{
"name": "itesm-socioformador-ago-dec-2023-team-04",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "xo",
"test": "jest",
"cypress:open": "cypress open"
},
"dependencies": {
"@auth0/nextjs-auth0": "^3.3.0",
"@internationalized/date": "^3.5.0",
"@n8tb1t/use-scroll-position": "^2.0.3",
"@next/eslint-plugin-next": "^14.0.3",
"@prisma/client": "^5.6.0",
"@react-aria/toast": "^3.0.0-beta.7",
"@react-aria/utils": "^3.22.0",
"@react-stately/toast": "^3.0.0-beta.1",
"@react-stately/toggle": "^3.7.0",
"@stock17944/human": "^3.2.1",
"@tanstack/react-table": "^8.10.7",
"@tanstack/table-core": "^8.10.7",
"auth0": "^4.1.0",
"autoprefixer": "^10.4.16",
"axios": "^1.6.2",
"clsx": "^2.0.0",
"copy-webpack-plugin": "^11.0.0",
"cva": "^1.0.0-beta.1",
"formik": "^2.4.5",
"framer-motion": "^10.16.7",
"immutable": "^5.0.0-beta.4",
"lodash": "^4.17.21",
"material-symbols": "^0.13.2",
"next": "^14.0.3",
"postcss": "^8.4.31",
"react": "^18.2.0",
"react-aria": "^3.30.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.3",
"react-stately": "^3.28.0",
"recharts": "^2.10.2",
"sharp": "^0.32.6",
"tailwind-merge": "^2.0.0",
"tailwindcss": "^3.3.5",
"twilio": "^4.19.0",
"typescript": "^5.3.2",
"usehooks-ts": "^2.9.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/cookie": "^0.6.0",
"@types/jest": "^29.5.10",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.1",
"@types/react": "^18.2.39",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"cypress": "^13.6.0",
"eslint": "^8.54.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-react": "^0.27.0",
"eslint-config-xo-typescript": "^1.0.1",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-plugin-unicorn": "^49.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prisma": "^5.6.0",
"tailwind-scrollbar": "^3.0.5",
"ts-jest": "^29.1.1",
"xo": "^0.56.0"
},
"eslintConfig": {
"env": {
"node": true,
"es6": true
},
"rules": {
"react/prop-types": "off",
"react/jsx-closing-tag-location": "off",
"react/jsx-indent-props": "off",
"react/require-default-props": "off",
"n/file-extension-in-import": "off",
"n/prefer-global/process": "off",
"new-cap": "off",
"@typescript-eslint/ban-types": "off"
},
"extends": [
"plugin:@next/next/recommended",
"xo",
"xo-typescript",
"xo-react",
"./node_modules/xo/config/plugins.cjs",
"plugin:testing-library/react",
"plugin:jest-dom/recommended"
],
"ignorePatterns": [
"tailwind.config.ts",
"postcss.config.js",
"next.config.js",
"next-env.d.ts"
]
}
}