-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.94 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.94 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
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
{
"name": "savr",
"version": "0.6.0",
"private": true,
"sideEffects": false,
"type": "module",
"author": "Jono",
"license": "GPL-3.0",
"scripts": {
"generate-routes": "tsr generate",
"dev": "VITE_DEBUG=true vite dev",
"dev:prod": "VITE_APP_MODE=production vite dev",
"dev:welcome": "VITE_DEBUG=true VITE_SHOW_WELCOME=true vite dev",
"build": "VITE_BUILD_TIMESTAMP=$(date -u +%Y-%m-%dT%H:%M:%SZ) vite build && tsc --noEmit",
"build:dev": "VITE_DEBUG=true VITE_BUILD_TIMESTAMP=$(date -u +%Y-%m-%dT%H:%M:%SZ) vite build && tsc --noEmit",
"build:prod": "VITE_DEBUG=false VITE_BUILD_TIMESTAMP=$(date -u +%Y-%m-%dT%H:%M:%SZ) vite build && tsc --noEmit",
"build:welcome": "VITE_SHOW_WELCOME=true VITE_BUILD_TIMESTAMP=$(date -u +%Y-%m-%dT%H:%M:%SZ) vite build && tsc --noEmit",
"start": "npx vite preview --port 8000 --host",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"demo-server": "npx ws --cors.origin '*' -d ~/sync/more/savr_demo_sites/",
"demo-server2": "npx http-server ~/sync/more/savr_demo_sites/ -p 8080 --cors",
"demo-server3": "npx http-server test_data/ -p 8080 --cors",
"remotestorage-server": "node test-server/armadietto.cjs",
"test": "jest",
"test:watch": "jest --watch",
"test:e2e": "node scripts/run-e2e.js",
"test:e2e:docker": "node scripts/run-e2e-docker.js",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.11.0",
"@fastify/cors": "^10.0.1",
"@fastify/formbody": "^8.0.1",
"@fastify/helmet": "^12.0.1",
"@fastify/static": "^8.0.1",
"@huggingface/transformers": "^3.8.1",
"@mozilla/readability": "^0.5.0",
"@mui/icons-material": "^5.15.13",
"@mui/material": "^5.15.13",
"@tanstack/react-router": "^1.127.3",
"@tanstack/react-router-devtools": "^1.127.3",
"@types/mustache": "^4.2.5",
"armadietto": "^0.6.0",
"commander": "^12.1.0",
"copyfiles": "^2.4.1",
"dexie": "^4.0.11",
"dexie-react-hooks": "^1.1.7",
"fastify": "^5.0.0",
"fastify-sse-v2": "^4.1.0",
"filenamify-url": "^3.1.0",
"http-proxy": "^1.18.1",
"js-md5": "^0.8.3",
"mime": "^3.0.0",
"minimatch": "^10.0.3",
"mozilla-readability-cli": "^0.2.4",
"mustache": "^4.2.0",
"notistack": "^3.0.2",
"playwright": "^1.54.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"remotestorage-widget": "^1.7.0",
"remotestoragejs": "^2.0.0-beta.7",
"showdown": "^2.1.0",
"tailwind-merge": "^2.6.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"uri-js": "^4.4.1",
"vite-plugin-pwa": "^1.0.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.54.1",
"@storybook/addon-docs": "^9.0.16",
"@storybook/addon-links": "^9.0.16",
"@storybook/react-vite": "^9.0.16",
"@storybook/testing-library": "^0.2.2",
"@tanstack/router-cli": "^1.132.27",
"@types/jest": "^30.0.0",
"@types/mime": "^3.0.4",
"@types/node": "^22.5.4",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/showdown": "^2.0.6",
"@vitejs/plugin-basic-ssl": "^2.1.0",
"@vitejs/plugin-react": "^4.6.0",
"autoprefixer": "^10.4.20",
"baseline-browser-mapping": "^2.9.11",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"jest": "^30.1.1",
"local-web-server": "^5.4.0",
"postcss": "^8.5.1",
"storybook": "^9.0.16",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.4.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.53.0",
"vite": "^6.3.5",
"vite-tsconfig-paths": "^5.1.4"
}
}