forked from pryv/app-web-auth3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.4 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.4 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
{
"name": "app-web-auth3",
"version": "2.0.0",
"description": "HDS/Pryv web pages for user authentication, registration & password management.",
"author": {
"name": "HealthDataSafe",
"url": "https://www.healthdatasafe.ch"
},
"private": true,
"license": "BSD-3-Clause",
"type": "module",
"scripts": {
"dev": "vite",
"dev:raw": "vite --mode raw",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"deploy": "bash scripts/deploy.sh",
"deploy:prod": "bash scripts/deploy-prod.sh",
"setup": "sh scripts/setup.sh",
"webserver": "npx backloop.dev ./dist"
},
"dependencies": {
"hds-lib": "git+https://github.com/healthdatasafe/hds-lib-js.git#0.12.0",
"hds-style": "git+https://github.com/healthdatasafe/style-package.git",
"marked": "^15.0.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^6.28.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@vitejs/plugin-react": "^4.4.0",
"eslint": "^9.32.0",
"neostandard": "^0.12.0",
"tailwindcss": "^4.1.0",
"typescript": "^5.8.0",
"typescript-eslint": "^8.32.0",
"vite": "^6.3.0",
"vite-plugin-backloop.dev": "^1.0.7"
},
"engines": {
"node": ">=20"
}
}