-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.97 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.97 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "devbcn",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:scss": "stylelint '**/*.scss' --cache",
"test": "jest",
"test:coverage": "jest --coverage --coverageReporters=text --coverageReporters=lcov",
"test:mutation": "stryker run",
"test:fuzz": "jest __tests__/fuzz",
"test:snapshots": "jest __tests__/snapshots",
"test:property": "jest __tests__/property",
"sass": "sass --watch public/assets/scss/main.scss:public/assets/css/main.css",
"type-check": "tsc --noEmit && npm run type-check:worker",
"type-check:worker": "tsc --project tsconfig.worker.json",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"e2e": "start-server-and-test dev http://localhost:3000 cypress:open",
"e2e:run": "start-server-and-test start http://localhost:3000 cypress:run",
"build:docs": "typedoc",
"check:docs": "bash -c 'echo \"Checking docs sync...\" && ([ -f AGENTS.md ] && [ -f CLAUDE.md ] || cp AGENTS.md CLAUDE.md)'"
},
"dependencies": {
"add-to-calendar-button-react": "^2.13.9",
"aos": "^2.3.4",
"baseline-browser-mapping": "^2.10.20",
"date-fns": "^4.1.0",
"framer-motion": "^12.38.0",
"gsap": "^3.15.0",
"lucide-react": "^1.8.0",
"next": "16.2.4",
"react": "^19.2.0",
"react-countup": "^6.5.3",
"react-dom": "^19.2.0",
"react-modal-video": "^2.0.2",
"react-slick": "^0.31.0",
"sass": "^1.99.0",
"slick-carousel": "^1.8.1",
"swiper": "^12.1.3",
"wowjs": "^1.1.3"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@ducanh2912/next-pwa": "^10.2.9",
"@eslint-community/eslint-plugin-eslint-comments": "^4.6.0",
"@eslint/js": "^9.39.2",
"@jazzer.js/core": "^4.0.0",
"@jazzer.js/jest-runner": "^4.0.0",
"@next/eslint-plugin-next": "^16.1.6",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/jest-runner": "^9.6.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/aos": "^3.0.7",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"@types/react-modal-video": "^1.2.3",
"@types/react-slick": "^0.23.13",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"cypress": "^15.14.0",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.6",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-security": "^4.0.0",
"fast-check": "^4.7.0",
"globals": "^17.5.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"schema-dts": "^2.0.0",
"start-server-and-test": "^3.0.2",
"stylelint": "^17.8.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-config-standard-scss": "^17.0.0",
"stylelint-max-lines": "^0.1.0",
"ts-jest": "^29.4.9",
"typedoc": "^0.28.19",
"typescript": "^5",
"whatwg-fetch": "^3.6.20"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix --cache"
],
"*.scss": [
"stylelint --fix --cache",
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
]
},
"overrides": {
"react": "^19.2.0",
"react-dom": "^19.2.0",
"serialize-javascript": "^7.0.3",
"axios": "^1.15.0",
"qs": "^6.15.0",
"minimatch": "^10.0.1",
"test-exclude": {
"minimatch": "^3.0.4"
},
"glob": {
"minimatch": "^3.0.4"
},
"systeminformation": "^5.31.1"
}
}