-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
129 lines (129 loc) · 4.08 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "interview-app",
"version": "0.2.1",
"private": true,
"dependencies": {
"@azure/msal-browser": "^2.30.0",
"@azure/msal-react": "^1.4.9",
"@dataclinic/interview": "^1.0.1",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-dropdown-menu": "^2.0.2",
"@radix-ui/react-popover": "^1.0.3",
"@radix-ui/react-scroll-area": "^1.0.0",
"@radix-ui/react-select": "^1.2.0",
"@radix-ui/react-toast": "^1.1.2",
"@radix-ui/react-toolbar": "^1.0.0",
"@radix-ui/react-tooltip": "^1.0.3",
"@reach/dialog": "^0.17.0",
"@reach/listbox": "^0.17.0",
"@reach/visually-hidden": "^0.17.0",
"@tanstack/react-query": "^4.18.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/invariant": "^2.2.35",
"@types/jest": "^27.0.1",
"@types/luxon": "^3.0.0",
"@types/node": "^16.7.13",
"@types/node-forge": "^1.3.1",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-scroll": "^1.8.4",
"@types/styled-components": "^5.1.25",
"ag-grid-community": "^28.2.1",
"ag-grid-react": "^28.2.1",
"classnames": "^2.3.1",
"dexie": "^3.2.2",
"dexie-react-hooks": "^1.1.1",
"framer-motion": "^9.0.2",
"google-spreadsheet": "^4.1.1",
"invariant": "^2.2.4",
"jwt-decode": "^3.1.2",
"luxon": "^3.0.1",
"node-forge": "^1.3.1",
"primeicons": "^6.0.1",
"primereact": "^8.7.3",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-google-drive-picker": "^1.2.2",
"react-router-dom": "^6.4.4",
"react-scripts": "5.0.1",
"react-scroll": "^1.8.7",
"remeda": "^1.6.1",
"styled-components": "^5.3.5",
"tailwindcss": "^3.0.24",
"uuid": "^8.3.2",
"web-vitals": "^2.1.0",
"zod": "^3.20.3"
},
"scripts": {
"api": "PYTHONPATH=. uvicorn views:app --log-config ./api-log-config.json --reload --reload-dir server --app-dir server/api",
"build": "react-scripts build",
"eject": "react-scripts eject",
"db": "sqlite3 db.sqlite",
"db-new-migration": "./scripts/new_db_migration.sh",
"db-upgrade": "python -m alembic upgrade head",
"db-downgrade": "python -m alembic downgrade -1",
"jobs-refresh-token-notif": "python -m server.jobs.refresh_token_email_notification",
"start": "react-scripts start",
"sync-types": "python scripts/openapi_processor.py && openapi --input openapi.json --useUnionTypes --output src/api --client fetch --indent 2 --name FastAPIService --postfix FastAPIService && rm -f openapi.json",
"test": "react-scripts test"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@arkweid/lefthook": "^0.7.7",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-tailwindcss": "^3.5.0",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"openapi-typescript-codegen": "^0.23.0",
"prettier": "^2.6.2",
"typescript": "^4.9.5"
},
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [
".ts",
".tsx"
]
},
"import/resolver": {
"typescript": {}
}
},
"resolutions": {
"styled-components": "^5"
},
"proxy": "http://127.0.0.1:8000"
}