-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.71 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
{
"name": "data-access-hub",
"version": "0.0.1",
"private": true,
"type": "module",
"description": "A client application for managing data access hubs, specifically designed to work with BigQuery and Cloud Storage.",
"author": "Alessio Siciliano <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "next dev",
"app": "firebase emulators:start --only firestore --project data-access-hub & next dev",
"build": "next build",
"start": "next start",
"lint": "eslint 'app/**/*.{js,jsx,ts,tsx}'",
"format:check": "prettier --check 'app/**/*.{js,jsx,ts,tsx}'",
"format:write": "prettier --write 'app/**/*.{js,jsx,ts,tsx}'"
},
"dependencies": {
"@heroicons/react": "2.2.0",
"@tailwindcss/postcss": "4.0.3",
"daisyui": "5.0.0-beta.6",
"firebase": "11.2.0",
"firebase-admin": "13.0.2",
"google-auth-library": "9.15.1",
"i18next": "24.2.2",
"js-cookie": "3.0.5",
"next": "15.1.6",
"postcss": "8.5.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-i18next": "15.4.0",
"tailwindcss": "4.0.3"
},
"devDependencies": {
"@eslint/eslintrc": "3",
"@eslint/js": "9.19.0",
"eslint": "9.19.0",
"eslint-config-next": "15.1.6",
"eslint-config-prettier": "10.0.1",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-node": "0.3.9",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-react": "7.37.4",
"globals": "15.14.0",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.11"
}
}