-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
67 lines (67 loc) · 2.2 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
{
"name": "@slowreader/web",
"private": true,
"type": "module",
"engines": {
"node": "^22.14.0",
"pnpm": "^10.0.0"
},
"scripts": {
"test": "pnpm run /^test:/",
"build": "pnpm run /^build:/ && mv ./storybook-static ./dist/ui",
"start": "vite",
"visual": "storybook dev -p 6006 --no-open",
"production": "node --run build && ./scripts/run-image.sh",
"size": "node --run build:web && size-limit",
"test:unit": "pnpm bnt",
"test:names": "../scripts/tsnode ./scripts/check-names.ts",
"test:css": "stylelint **/*.css **/*.svelte",
"test:build": "node --run build && size-limit && ../scripts/tsnode ./scripts/check-css-props.ts",
"build:routes": "../scripts/tsnode ./scripts/export-routes.ts",
"build:visual": "NODE_ENV=test storybook build",
"build:web": "vite build && ../scripts/tsnode scripts/generate-csp.ts",
"format:stylelint": "stylelint --fix **/*.{css,svelte}",
"clean:build": "rm -rf dist"
},
"dependencies": {
"@logux/client": "0.21.1",
"@logux/core": "0.9.0",
"@mdi/js": "7.4.47",
"@nanostores/i18n": "0.12.2",
"@nanostores/persistent": "0.10.2",
"@nanostores/router": "0.16.1",
"@rollup/plugin-node-resolve": "16.0.0",
"@slowreader/core": "workspace:*",
"@sveltejs/vite-plugin-svelte": "5.0.3",
"autoprefixer": "10.4.20",
"keyux": "0.11.0",
"nanoid": "5.1.2",
"nanostores": "0.11.4",
"postcss": "8.5.3",
"postcss-load-config": "6.0.1",
"rollup": "4.34.9",
"svelte": "5.20.5",
"ts-node": "10.9.2",
"vite": "6.2.0"
},
"devDependencies": {
"@logux/stylelint-config": "0.20.0",
"@size-limit/file": "11.2.0",
"@storybook/addon-svelte-csf": "5.0.0-next.23",
"@storybook/addon-themes": "8.6.2",
"@storybook/addon-viewport": "8.6.2",
"@storybook/svelte": "8.6.2",
"@storybook/svelte-vite": "8.6.2",
"@storybook/types": "8.6.2",
"@stylistic/stylelint-config": "2.0.0",
"better-node-test": "0.7.1",
"browserslist": "4.24.4",
"postcss-html": "1.8.0",
"postcss-nesting": "13.0.1",
"postcss-selector-parser": "7.1.0",
"size-limit": "11.2.0",
"storybook": "8.6.2",
"stylelint": "16.15.0",
"stylelint-use-logical": "2.1.2"
}
}