forked from hplush/slowreader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.18 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
{
"name": "@slowreader/web",
"private": true,
"type": "module",
"engines": {
"node": "^22.5.0",
"pnpm": "^9.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": "tsx ./scripts/check-names.ts",
"test:css": "stylelint **/*.css **/*.svelte",
"test:build": "node --run build && size-limit",
"build:routes": "tsx ./scripts/export-routes.ts",
"build:visual": "NODE_ENV=test storybook build",
"build:web": "vite build && tsx ./scripts/clean-css.ts && tsx scripts/generate-csp.ts",
"format:stylelint": "stylelint --fix **/*.{css,svelte}",
"clean:build": "rm -rf dist"
},
"dependencies": {
"@evilmartians/harmony": "1.2.0",
"@logux/client": "github:logux/client#next",
"@logux/core": "0.8.5",
"@mdi/js": "7.4.47",
"@nanostores/i18n": "0.12.1",
"@nanostores/persistent": "0.10.1",
"@nanostores/router": "0.15.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@slowreader/core": "link:../core",
"@sveltejs/vite-plugin-svelte": "3.1.1",
"autoprefixer": "10.4.19",
"keyux": "0.7.2",
"nanoid": "5.0.7",
"nanostores": "0.10.3",
"postcss": "8.4.39",
"rollup": "4.19.0",
"svelte": "4.2.18",
"svelte-preprocess": "6.0.2",
"tsx": "4.16.2",
"vite": "5.3.4"
},
"devDependencies": {
"@logux/stylelint-config": "0.20.0",
"@size-limit/file": "11.1.4",
"@storybook/addon-svelte-csf": "4.1.4",
"@storybook/addon-themes": "8.2.5",
"@storybook/addon-viewport": "8.2.5",
"@storybook/svelte": "8.2.5",
"@storybook/svelte-vite": "8.2.5",
"@storybook/types": "^8.2.5",
"@stylistic/stylelint-config": "1.0.1",
"better-node-test": "0.5.1",
"browserslist": "4.23.2",
"postcss-html": "1.7.0",
"postcss-nesting": "12.1.5",
"postcss-selector-parser": "6.1.1",
"size-limit": "11.1.4",
"storybook": "8.2.5",
"stylelint": "16.7.0",
"stylelint-use-logical": "2.1.2"
}
}