This repository has been archived by the owner on Jan 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.58 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
68
69
70
71
72
73
{
"name": "smooshr-next",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"api": "PYTHONPATH=. uvicorn views:app --log-config ./api-log-config.json --reload --reload-dir server --app-dir server/api",
"api-test": "PYTHONPATH=. coverage run -m pytest -vv server/ && coverage xml",
"db-new-migration": "./scripts/new_db_migration.sh",
"db-upgrade": "python -m alembic upgrade head",
"db-downgrade": "python -m alembic downgrade -1",
"dev": "vite --mode frontend",
"build": "tsc && vite build --mode frontend",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"py-install": "pip-compile requirements.in && pip install -r requirements.txt",
"sync-types": "curl http://localhost:8000/openapi.json > openapi.json && openapi-ts && rm -f openapi.json"
},
"dependencies": {
"@azure/msal-browser": "^3.20.0",
"@azure/msal-react": "^2.0.22",
"@hey-api/client-fetch": "^0.4.2",
"@mantine/core": "^7.10.1",
"@mantine/form": "^7.10.1",
"@mantine/hooks": "^7.10.1",
"@mantine/modals": "^7.12.2",
"@mantine/notifications": "^7.12.1",
"@tabler/icons-react": "^3.14.0",
"@tanstack/react-query": "^5.51.23",
"dayjs": "^1.11.13",
"papaparse": "^5.4.1",
"pluralize": "^8.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remeda": "^2.12.0",
"ts-pattern": "^5.3.1",
"uuid": "^10.0.0",
"wouter": "^3.3.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@hey-api/openapi-ts": "^0.53.11",
"@types/node": "^22.2.0",
"@types/papaparse": "^5.3.14",
"@types/pluralize": "^0.0.33",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-tailwindcss": "^3.17.0",
"eslint-plugin-unused-imports": "^4.1.4",
"postcss": "^8.4.38",
"postcss-preset-mantine": "^1.15.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.2.5",
"serve": "^14.2.3",
"tailwindcss": "^3.4.3",
"typescript": "^5.2.2",
"vite": "^5.2.0"
}
}