-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 4.08 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 4.08 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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/*"
],
"sideEffects": false,
"scripts": {
"dev": "vite --open",
"build": "tsc -b && vite build",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"oxlint:check": "oxlint -c oxlintrc.json",
"oxlint:fix": "oxlint --fix -c oxlintrc.json",
"lint:css": "stylelint \"**/*.css\"",
"lint:css:fix": "stylelint \"**/*.css\" --fix",
"format:check": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --list-different --ignore-path .gitignore .",
"test:cypress:open": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open'",
"test:vitest:ui": "vitest --ui",
"test": "vitest run",
"test:watch": "vitest watch",
"test:worker": "npm run test --prefix workers/feature-flags",
"test:integration": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress run --e2e'",
"test:all": "npm run test && npm run test:worker && npm run test:integration",
"preview": "vite preview --open",
"ci": "npm run lint:check && npm run oxlint:check && npm run lint:css && npm run format:check && npm run test:all && npm run build",
"dev:flags": "npm run dev -w @portfolio/feature-flags",
"dev:contact": "npm run dev -w @portfolio/contact-form",
"dev:all": "concurrently \"npm run dev\" \"npm run dev:flags\" \"npm run dev:contact\"",
"deploy:flags": "npm run deploy -w @portfolio/feature-flags",
"deploy:contact": "npm run deploy -w @portfolio/contact-form",
"flags:list": "npx tsx scripts/flags-cli.ts list",
"flags:enable": "npx tsx scripts/flags-cli.ts enable",
"flags:disable": "npx tsx scripts/flags-cli.ts disable",
"flags:sync": "npx tsx scripts/flags-cli.ts sync",
"flags:status": "npx tsx scripts/flags-cli.ts status"
},
"dependencies": {
"@cloudinary/url-gen": "^1.22.0",
"@marsidev/react-turnstile": "^1.3.1",
"@xstate/react": "^6.0.0",
"focus-trap-react": "^11.0.4",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router": "^7.12.0",
"xstate": "^5.23.0"
},
"overrides": {
"qs": "6.14.1"
},
"devDependencies": {
"@dreamsicle.io/stylelint-config-tailwindcss": "^1.1.2",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.37.0",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@react-router/dev": "^7.11.0",
"@tailwindcss/postcss": "^4.1.14",
"@tailwindcss/vite": "^4.1.16",
"@testing-library/cypress": "^10.1.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@tsconfig/node22": "^22.0.2",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.4",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.1",
"@typescript-eslint/parser": "^8.46.0",
"@vitejs/plugin-react": "^5.0.4",
"@vitest/ui": "^3.2.4",
"@welldone-software/why-did-you-render": "^10.0.1",
"autoprefixer": "^10.4.21",
"babel-plugin-react-compiler": "1.0.0",
"concurrently": "^9.1.2",
"cypress": "^15.8.1",
"cypress-real-events": "^1.15.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^4.4.0",
"eslint-plugin-barrel-files": "^3.0.1",
"eslint-plugin-cypress": "^5.2.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-perf": "^3.3.3",
"eslint-plugin-react-refresh": "^0.4.23",
"globals": "^16.4.0",
"jiti": "^2.6.1",
"jsdom": "^27.0.0",
"oxlint": "^1.29.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"start-server-and-test": "^2.1.2",
"stylelint": "^16.26.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
"tailwindcss": "^4.1.14",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.0",
"vite": "^7.3.0",
"vitest": "^3.2.4",
"yaml": "^2.8.2"
}
}