-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.65 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
{
"name": "asset-generator",
"version": "0.0.0",
"private": true,
"homepage": "https://github.com/ndelangen/dune-assets",
"repository": {
"type": "git",
"url": "[email protected]:ndelangen/dune-assets.git"
},
"author": {
"name": "Norbert de Langen",
"email": "[email protected]"
},
"type": "module",
"scripts": {
"local-capture": "storybook build --test && LOCAL=true bun run ./scripts/capture.ts",
"build-storybook": "storybook build --test",
"capture": "bun run ./scripts/capture.ts",
"format": "prettier --write .",
"generate": "bun run ./scripts/generate.ts",
"hooks": "cp scripts/pre-commit .git/hooks/ && chmod +x .git/hooks/pre-commit && echo 'hook copied'",
"storybook": "storybook dev -p 6006"
},
"dependencies": {
"@privyid/ghoulscript": "^0.1.0-alpha.4",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/cli": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@tamtamchik/json-deep-sort": "^1.3.0",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"cli-progress": "^3.12.0",
"jimp": "^1.6.0",
"markdown-to-jsx": "^7.7.2",
"p-limit": "^6.2.0",
"playwright": "^1.49.1",
"react": "^19.0.0",
"react-children-utilities": "^2.10.0",
"react-dom": "^19.0.0",
"recursive-readdir-files": "^2.3.2",
"typescript": "^5.7.2",
"typescript-plugin-css-modules": "^5.1.0",
"vite": "^6.0.6",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/bun": "^1.1.14",
"prettier": "^3.4.2",
"prettier-plugin-jsdoc": "^1.3.0"
}
}