-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.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
{
"name": "@code-glue/paradigm",
"private": true,
"type": "module",
"version": "0.0.1",
"packageManager": "yarn@4.12.0",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"start": "storybook dev -p 6006 --no-open --quiet",
"storybook:build": "storybook build",
"storybook:test": "vitest --project=storybook",
"sync": "tsx scripts/syncFigma.ts",
"lint": "biome check .",
"format": "biome check --write .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"postinstall": "bash scripts/patch-if-present.sh"
},
"dependencies": {
"@fontsource/nunito-sans": "^5.2.7",
"@tamagui/config": "2.0.0-rc.11",
"@window-splitter/react": "^1.1.3",
"browser-info": "^1.3.0",
"culori": "^4.0.2",
"motion": "^12.23.26",
"pluralize": "^8.0.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-native-device-info": "^15.0.1",
"react-native-web": "^0.21.2",
"rtl-detect": "^1.1.2",
"tamagui": "2.0.0-rc.11"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@chromatic-com/storybook": "^5.0.0",
"@storybook/addon-a11y": "^10.0.7",
"@storybook/addon-docs": "^10.0.7",
"@storybook/addon-vitest": "^10.0.7",
"@storybook/react-vite": "^10.0.7",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@tamagui/vite-plugin": "2.0.0-rc.11",
"@types/culori": "^4",
"@types/node": "^22.10.2",
"@types/pluralize": "^0.0.33",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@types/react-native-web": "^0.19.2",
"@types/rtl-detect": "^1",
"@vitejs/plugin-react": "^5.0.4",
"@vitest/browser-playwright": "^4.0.8",
"@vitest/coverage-v8": "^4.0.17",
"dotenv": "^17.2.3",
"jsdom": "^27.0.0",
"patch-package": "^8.0.1",
"playwright": "^1.56.1",
"storybook": "^10.0.7",
"tsx": "^4.19.2",
"typescript": "^5.9.3",
"unplugin-fonts": "^1.4.0",
"vite": "^7.1.7",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.5",
"web-vitals": "^5.1.0"
}
}