-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 1.76 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": "scholaria-app",
"version": "0.1.0",
"private": true,
"scripts": {
"tauri-start": "tauri dev",
"tauri-build": "tauri build",
"tauri": "tauri",
"build": "next build",
"start": "next start",
"dev": "cross-env BROWSER=none next dev",
"lint": "next lint && biome check app/ components/",
"prepare": "husky"
},
"dependencies": {
"@google-cloud/storage": "^7.11.1",
"@tanstack/react-query": "^5.36.2",
"@tauri-apps/api": "^1.5.3",
"boring-avatars": "^1.10.2",
"clsx": "^2.1.0",
"next": "^14.1.4",
"pspdfkit": "^2024.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.2.1",
"react-toastify": "^10.0.5",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@biomejs/biome": "^1.6.3",
"@tauri-apps/cli": "^1.5.11",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.2",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.23",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"autoprefixer": "^10.4.19",
"cross-env": "^7.0.3",
"cssnano": "^6.1.2",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.4",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"postcss-nesting": "^12.1.1",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}