-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.85 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
{
"name": "easycontacts",
"version": "1.0.10",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "yarn tsc --noEmit && next lint",
"test": "NODE_ENV=test jest",
"test:watch": "yarn test --watch",
"test:cov": "yarn test --coverage",
"test:e2e": "NODE_ENV=test yarn cypress run",
"test:e2e:ui": "yarn cypress open",
"docker:up": "docker-compose up --build -V",
"docker:down": "docker-compose down",
"docker:pull": "docker-compose pull",
"patch": "yarn version --patch && git push --follow-tags",
"release": "yarn version --major && git push --follow-tags"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@mui/icons-material": "^5.14.11",
"@mui/material": "^5.15.4",
"@sentry/cli": "2.12.0",
"@sentry/nextjs": "^7.91.0",
"autoprefixer": "^10.4.14",
"axios": "^1.6.5",
"next": "13.1.6",
"next-auth": "^4.24.5",
"nextjs-progressbar": "^0.0.16",
"nprogress": "^0.2.0",
"postcss": "^8.4.31",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "^3.1.8"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/node": "^20.11.9",
"@types/react": "^18.2.48",
"@types/react-dom": "18.0.10",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"cypress": "^12.11.0",
"eslint": "8.40.0",
"eslint-config-next": "13.4.7",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^5.1.3",
"faker-br": "^0.4.1",
"jest": "^29.4.2",
"jest-environment-jsdom": "^29.4.2",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
},
"resolutions": {
"jackspeak": "2.1.1"
}
}