-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.04 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
{
"name": "modern-stack",
"private": true,
"type": "module",
"module": "index.ts",
"imports": {
"#.storybook/*": "./.storybook/*",
"#styled-system/*": "./src/shared/styled-system/*",
"#theme/*": "./theme/*",
"#*": "./src/*"
},
"scripts": {
"build": "mise run build:webapp",
"check": "mise run check",
"dev": "mise run dev",
"fix": "mise run fix",
"format": "mise run format",
"lint": "mise run lint",
"lint:fallow": "mise run lint:fallow",
"lint:fallow:fix": "mise run lint:fallow:fix",
"lint:fallow:fix:preview": "mise run lint:fallow:fix:preview",
"prepare": "mise run --no-deps prepare",
"preview": "mise run preview",
"storybook": "mise run storybook",
"test": "mise run test",
"test:coverage": "mise run test:coverage",
"test:run": "mise run test:run",
"typecheck": "mise run typecheck",
"validate": "mise run validate"
},
"dependencies": {
"@ark-ui/react": "^5.37.2",
"@icons-pack/react-simple-icons": "^13.13.0",
"@reatom/core": "https://pkg.pr.new/reatom/reatom/@reatom/core@1294",
"@reatom/react": "https://pkg.pr.new/reatom/reatom/@reatom/react@1294",
"lucide-react": "^1.21.0",
"react": "^19.2.7",
"react-dom": "^19.2.7"
},
"devDependencies": {
"@inlang/paraglide-js": "^2.18.0",
"@pandacss/dev": "^1.11.3",
"@pandacss/studio": "^1.11.3",
"@storybook/addon-a11y": "^10.4.6",
"@storybook/addon-docs": "^10.4.6",
"@storybook/addon-vitest": "^10.4.6",
"@storybook/react-vite": "^10.4.6",
"@total-typescript/ts-reset": "^0.6.1",
"@types/bun": "^1.3.13",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.9",
"fallow": "^2.75.0",
"msw": "^2.14.6",
"msw-storybook-addon": "^2.0.7",
"playwright": "^1.60.0",
"storybook": "^10.4.6",
"typescript": "npm:@typescript/typescript6@^6.0.0",
"typescript-7": "^7.0.1-rc",
"vite": "^8.0.16",
"vite-plus": "^0.2.1",
"vitest": "npm:@voidzero-dev/vite-plus-test@^0.1.24"
},
"packageManager": "bun@1.3.14",
"msw": {
"workerDirectory": [
"public"
]
}
}