-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.11 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.11 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
{
"name": "dashboard",
"version": "1.0.0",
"scripts": {
"predev": "echo \"export default 'development'\" > lib/config/version.ts",
"dev": "yarn predev && blitz dev",
"prebuild": "echo \"export default '$(git rev-parse --short HEAD)'\" > lib/config/version.ts",
"build": "yarn prebuild && blitz build",
"start": "blitz start",
"studio": "blitz studio",
"lint": "tsc && eslint . && prettier . --check && prisma format --check",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "husky",
"docker:build": "docker build . -t locally_built_dashboard_app",
"docker:run:db": "docker compose --env-file ./.env.local -f docker-compose-db-only.yml up",
"docker:run:all": "docker compose --env-file ./.env.local up -d --build"
},
"prettier": {
"semi": false,
"printWidth": 100,
"tabWidth": 2,
"trailingComma": "es5"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@blitzjs/auth": "2.2.4",
"@blitzjs/next": "2.2.4",
"@blitzjs/rpc": "2.2.4",
"@heroicons/react": "2.0.12",
"@prisma/adapter-pg": "7.2.0",
"@prisma/client": "7.2.0",
"@tailwindcss/typography": "0.5.16",
"blitz": "patch:blitz@npm%3A2.2.4#~/.yarn/patches/blitz-npm-2.2.4-0e7e67811f.patch",
"chart.js": "^4.4.0",
"chartjs-adapter-dayjs-3": "1.2.3",
"clsx": "2.1.1",
"dayjs": "1.11.13",
"feed-reader": "https://github.com/layaxx/feed-reader",
"final-form": "4.20.10",
"he": "1.2.0",
"html-react-parser": "5.2.2",
"next": "^15.4.10",
"node-fetch": "3.3.2",
"react": "^19.2.3",
"react-chartjs-2": "^5.2.0",
"react-confirm": "0.3.0-7",
"react-dom": "^19.2.3",
"react-final-form": "6.5.9",
"react-sortablejs": "6.1.4",
"react-toastify": "10.0.5",
"react-tracked": "^2.0.0",
"secure-password": "4.0.0",
"sortablejs": "1.15.6",
"tailwind-merge": "2.3.0",
"tailwindcss": "^3.4.0",
"univis-api": "0.0.3",
"use-read-time": "1.0.3",
"xss": "1.0.15",
"zod": "3.23.8"
},
"devDependencies": {
"@eslint/compat": "1.2.4",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.17.0",
"@faker-js/faker": "8.4.1",
"@testing-library/jest-dom": "5.16.5",
"@types/babel__core": "7.1.19",
"@types/he": "1.2.3",
"@types/jest": "28.1.3",
"@types/react": "19.2.3",
"@types/sortablejs": "1.15.0",
"autoprefixer": "10.4.12",
"eslint": "9.17.0",
"eslint-config-next": "15.1.3",
"eslint-plugin-classnames": "https://github.com/layaxx/eslint-plugin-classnames",
"eslint-plugin-tailwindcss": "3.17.5",
"eslint-plugin-unicorn": "56.0.1",
"husky": "9.0.11",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.3",
"jest-mock-extended": "2.0.4",
"lint-staged": "11.3.0-beta.2",
"node-mocks-http": "1.14.1",
"postcss": "8.4.38",
"postcss-nested": "5.0.6",
"prettier": "3.3.0",
"prettier-plugin-prisma": "5.0.0",
"pretty-quick": "^4.0.0",
"prisma": "7.2.0",
"ts-jest": "28.0.8",
"typescript": "5.9"
},
"private": true,
"packageManager": "yarn@4.12.0",
"license": "GPL-3.0-or-later"
}