forked from phs-screening/phs-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.08 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.08 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
102
103
104
105
106
107
108
109
110
111
112
{
"name": "phs-app",
"author": "DeviasIO",
"licence": "MIT",
"version": "1.0.0",
"private": false,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format:check": "prettier --check .",
"lint": "eslint . --ext .js,.jsx",
"typecheck": "tsc --noEmit --project jsconfig.json",
"fixtures:check": "echo \"No fixtures drift check configured for this repo\"",
"test": "vitest",
"test:ci": "vitest run --coverage",
"test:run": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^5.14.15",
"@mui/lab": "^5.0.0-alpha.136",
"@mui/material": "^5.14.15",
"@mui/styles": "^6.4.8",
"@mui/system": "^7.1.0",
"@mui/x-date-pickers": "^8.9.0",
"axios": "^1.12.2",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"formik": "^2.4.6",
"history": "^5.3.0",
"install": "^0.13.0",
"jspdf": "^3.0.1",
"jspdf-autotable": "^5.0.2",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"npm": "^11.4.1",
"nprogress": "^0.2.0",
"pdfmake": "^0.2.20",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-feather": "^2.0.10",
"react-helmet": "^6.1.0",
"react-helmet-async": "^2.0.5",
"react-hook-form": "^7.56.4",
"react-perfect-scrollbar": "^1.5.8",
"react-router": "^7.6.1",
"react-router-dom": "^7.6.1",
"sshpk": "^1.18.0",
"stream": "^0.0.3",
"tslib": "^2.8.1",
"type-fest": "^4.41.0",
"uniforms": "^3.10.0",
"uniforms-mui": "^3.10.0",
"uuid": "^11.1.0",
"yup": "^1.6.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^4.6.0",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^8.39.0",
"eslint-config-prettier": "^10.1.5",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"jsdom": "^28.1.0",
"nodemon": "^3.1.10",
"prettier": "3.5.3",
"typescript": "^4.9.5",
"vite": "^6.3.5",
"vitest": "^4.1.8"
},
"description": "Remember to do these:",
"main": ".eslintrc.js",
"repository": {
"type": "git",
"url": "git+https://github.com/phs-screening/phs-app.git"
},
"keywords": [],
"license": "ISC",
"bugs": {
"url": "https://github.com/phs-screening/phs-app/issues"
},
"homepage": "https://github.com/phs-screening/phs-app#readme"
}