-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
123 lines (123 loc) · 3.55 KB
/
package.json
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
{
"//": "NOTE: This is a generated file. Do not edit this file directly, edit package.json.js instead.",
"name": "@fortanix/baklava",
"version": "1.0.0-beta-20241206",
"license": "MPL-2.0",
"author": "Fortanix",
"description": "Fortanix Baklava design system",
"repository": {
"type": "git",
"url": "git+https://github.com/fortanix/baklava.git"
},
"files": [
"src",
"app",
"dist",
"LICENSE",
"CHANGELOG.md",
"README.md"
],
"sideEffects": [
"*.css"
],
"type": "module",
"exports": {
".": {
"types": "./dist/baklava.d.ts",
"default": "./dist/baklava.js"
},
"./styling/variables.scss": {
"default": "./src/styling/variables.scss"
}
},
"scripts": {
"gen-package": "node package.json.js",
"install-project": "npm run gen-package && npm install",
"node": "node --import=tsx",
"repl": "tsx",
"plop": "NODE_OPTIONS=\"--import tsx\" plop",
"import": "tsx scripts/import.ts",
"automate": "tsx scripts/automate.ts",
"serve:dev": "vite --config=./vite.config.ts serve",
"build": "tsc -b && vite --config=./vite.config.ts build",
"storybook:serve": "storybook dev -p 6006",
"storybook:build": "storybook build --docs",
"chromatic": "npx chromatic",
"check:types": "tsc -b",
"lint:style": "stylelint 'src/**/*.scss'",
"lint:script": "biome lint",
"lint": "npm run lint:style && npm run lint:script",
"test": "npm run check:types && npm run lint:style",
"test-ui": "vitest --ui",
"coverage": "vitest run --coverage",
"start": "npm run storybook:serve",
"prepare": "npm run build"
},
"devDependencies": {
"plop": "^4.0.1",
"tsx": "^4.19.2",
"glob": "^11.0.0",
"vite": "^5.4.11",
"@vitejs/plugin-react": "^4.3.4",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-lib-inject-css": "^2.1.1",
"vite-plugin-svg-icons": "^2.0.1",
"typescript": "^5.7.2",
"@types/node": "^22.10.1",
"stylelint": "^16.11.0",
"stylelint-config-standard-scss": "^14.0.0",
"@biomejs/biome": "^1.9.4",
"vitest": "^2.1.8",
"@vitest/ui": "^2.1.8",
"storybook": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/test": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-a11y": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-storysource": "^8.4.7",
"@storybook/addon-designs": "^8.0.4",
"chromatic": "^11.20.0",
"@chromatic-com/storybook": "^3.2.2",
"storybook-dark-mode": "^4.0.2",
"@percy/cli": "^1.30.4",
"@percy/storybook": "^6.0.3",
"vite-css-modules": "^1.6.0",
"typescript-plugin-css-modules": "^5.0.1",
"sass-embedded": "^1.82.0",
"lightningcss": "^1.28.2",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1"
},
"dependencies": {
"date-fns": "^4.1.0",
"message-tag": "^0.10.0",
"classnames": "^2.5.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-error-boundary": "^4.1.2",
"@floating-ui/react": "^0.26.28",
"react-toastify": "^10.0.6",
"effect": "^3.11.3",
"react-hook-form": "^7.54.0",
"optics-ts": "^2.4.1"
},
"peerDependencies": {
"react": ">= 19.0.0",
"react-dom": ">= 19.0.0"
},
"peerDependenciesMeta": {},
"overrides": {
"@storybook/addon-designs": {
"react": "$react",
"react-dom": "$react-dom"
},
"@storybook/icons": {
"react": "$react",
"react-dom": "$react-dom"
}
}
}