This repository has been archived by the owner on Aug 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.63 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
{
"name": "group-project",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"start": "concurrently \"npm run dev\" \"npm run server\" \"npm run server2\"",
"dev": "vite --host",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"host": "vite --host",
"server": "json-server -p3001 --watch kirjatdb.json",
"server2": "json-server -p3002 --watch lainaukset.json"
},
"dependencies": {
"@types/bcryptjs": "^2.4.4",
"axios": "^1.5.0",
"bcryptjs": "^2.4.3",
"canvg": "^4.0.1",
"concurrently": "^8.2.1",
"cors": "^2.8.5",
"file-saver": "^2.0.5",
"json-server": "^0.17.3",
"printd": "^1.6.0",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-frame-component": "^5.2.6",
"react-localstorage": "^1.0.0",
"react-qr-code": "^2.0.12",
"react-router-dom": "^6.15.0",
"react-secure-storage": "^1.3.0"
},
"devDependencies": {
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"gh-pages": "^6.0.0",
"html5-qrcode": "^2.3.8",
"sass": "^1.66.1",
"sass-loader": "^13.3.2",
"typescript": "^5.0.2",
"vite": "^4.4.9"
},
"server": {
"port": 3000,
"host": true
}
}