-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 3.4 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
{
"name": "kavoon",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"status-dev-work": "babel-node scripts/statusOfDevWork.js",
"new-status-dev-work": "babel-node scripts/newStatusOfDevWork.js",
"mark-paid": "babel-node scripts/markPaid.js",
"new-mark-paid": "babel-node scripts/newMarkPaid.js",
"clean": "rm -rf .next",
"start": "next start",
"jest": "jest --config ./jest.config.cjs --collectCoverage --coverageDirectory=\"./coverage\" --ci --reporters=default --reporters=jest-junit --watchAll=false",
"lint": "eslint .",
"format": "prettier --write \"**/**/*.{js,jsx,ts,tsx,json,css,md}\"",
"format:check": "prettier --check \"**/**/*.{js,jsx,ts,tsx,json,css,md}\"",
"format:staged": "prettier --write $(git diff --cached --name-only --diff-filter=ACMR | grep -E \"\\.(js|jsx|ts|tsx|json|css|md)$\" || true)",
"build": "next build",
"cy:run": "cypress run",
"cy:open": "cypress open",
"cy:snapshots": "cypress run --env updateSnapshots=true",
"start:ci": "serve --no-clipboard --listen 3000",
"cy:test": "start-server-and-test dev http://localhost:3000 cy:run",
"cy:update-snapshots": "start-server-and-test dev http://localhost:3000 cy:snapshots && find ./cypress/snapshots/ -type d -name '__diff*' -prune -exec rm -rf {} \\;",
"analyze": "ANALYZE=true yarn run build"
},
"dependencies": {
"@next/third-parties": "^14.2.5",
"@sentry/browser": "^8.33.1",
"@sentry/nextjs": "^7.85.0",
"bufferutil": "^4.0.8",
"firebase": "^10.12.0",
"formik": "^2.4.6",
"matchmedia-polyfill": "^0.3.2",
"modern-normalize": "^2.0.0",
"mongodb": "^6.6.1",
"next": "^14.2.5",
"next-mdx-remote": "^5.0.0",
"photoswipe": "^5.4.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scroll": "^1.9.0",
"react-spinners": "^0.13.8",
"rxjs": "^7.8.1",
"sharp": "^0.32.1",
"swiper": "^11.1.15",
"tgfancy": "^0.13.0",
"translate": "^3.0.0",
"utf-8-validate": "^6.0.4",
"uuid": "^10.0.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@next/bundle-analyzer": "^14.2.8",
"@simonsmith/cypress-image-snapshot": "^9.1.0",
"@svgr/webpack": "^8.1.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/cypress": "^0.1.6",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"child_process": "^1.0.2",
"cross-env": "^7.0.3",
"cypress": "^13.15.2",
"cypress-network-idle": "^1.14.2",
"eslint": "^9.15.0",
"eslint-config-next": "^15.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"globals": "^15.12.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"next-aws-cloudfront": "^1.3.1-alpha.1",
"prettier": "3.3.3",
"start-server-and-test": "^2.0.5",
"ts-jest": "^29.2.5",
"typescript": "^5.4.5",
"typescript-plugin-css-modules": "^5.1.0"
}
}