-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 4.1 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 4.1 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
{
"name": "litefront",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"____________________BUILD AND RUN______________________________________": "",
"build": "npm run build:vite && npx run-p check",
"build:vite": "vite build",
"start:dev": "vite",
"start:prod": "vite preview",
"____________________TESTING___________________________________________": "",
"test:dev": "vitest",
"test:prod": "vitest run",
"test:e2e:dev": "playwright test --ui",
"test:e2e:prod": "playwright test --project=chromium --reporter=list",
"test:coverage": "vitest run --coverage",
"test:all": "npm run test:prod && npm run test:e2e:prod",
"test:e2e:show-trace": "playwright show-trace",
"____________________STORYBOOK__________________________________________": "",
"storybook:serve": "ladle serve",
"storybook:build": "ladle build --outDir storybook-build",
"storybook:preview": "ladle preview",
"____________________CODEGEN____________________________________________": "",
"gen": "graphql-codegen --require dotenv/config --config codegen.yml",
"gen:routes": "tsr generate",
"test:e2e:record": "npx playwright codegen",
"____________________LINTING AND FORMATTING_____________________________": "",
"lint": "biome check",
"lint:fsd": "steiger ./src",
"lint:fix": "biome check --write",
"lint:fix:unsafe": "biome check --write --unsafe",
"lint:style": "stylelint \"**/*.{css,scss}\"",
"lint:style:fix": "npm run lint:style -- --fix",
"ts:check": "tsc --noEmit",
"check": "npx run-p lint:style ts:check lint:fix knip lint:fsd",
"knip": "knip --production",
"____________________OTHER______________________________________________": "",
"postinstall": "npm run prepare",
"prepare": "npx lefthook install",
"update": "npx ncu -u && npx rimraf node_modules package-lock.json && npm i",
"postupdate": "npm run lint:fix && npm run check"
},
"dependencies": {
"@sentry/react": "^10.45.0",
"@tanstack/react-router": "^1.168.3",
"@tanstack/router-devtools": "^1.166.11",
"lucide-react": "^1.6.0",
"oidc-client-ts": "^3.5.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-error-boundary": "^6.1.1",
"react-oidc-context": "^3.3.1",
"react-scan": "^0.5.3",
"sonner": "^2.0.7",
"urql": "^5.0.1",
"zustand": "^5.0.12"
},
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@graphql-codegen/cli": "6.2.1",
"@graphql-codegen/schema-ast": "^5.0.1",
"@graphql-codegen/typescript": "5.0.9",
"@graphql-codegen/typescript-operations": "5.0.9",
"@graphql-codegen/typescript-urql": "^5.0.0",
"@inlang/paraglide-js": "2.15.1",
"@ladle/react": "^5.1.1",
"@playwright/test": "^1.58.2",
"@sentry/vite-plugin": "^5.1.1",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/router-cli": "^1.166.18",
"@tanstack/router-plugin": "^1.167.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.1",
"babel-plugin-react-compiler": "^1.0.0",
"daisyui": "^5.5.19",
"dotenv": "^17.3.1",
"graphql": "^16.13.2",
"jsdom": "^29.0.1",
"knip": "^6.0.5",
"kodu": "^1.1.21",
"lefthook": "^2.1.4",
"npm-check-updates": "^19.6.5",
"npm-run-all": "^4.1.5",
"rimraf": "^6.1.3",
"rollup-plugin-visualizer": "^7.0.1",
"sass": "^1.98.0",
"sharp": "^0.34.5",
"steiger": "^0.5.11",
"stylelint": "^17.5.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-config-tailwindcss": "^1.0.1",
"stylelint-scss": "^7.0.0",
"svgo": "^4.0.1",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"vite": "^8.0.2",
"vite-plugin-image-optimizer": "^2.0.3",
"vite-plugin-pwa": "^1.2.0",
"vite-plugin-sitemap": "^0.8.2",
"vite-plugin-version-mark": "^0.2.2",
"vitest": "^4.1.1",
"workbox-window": "^7.4.0"
}
}