-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 4.06 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
{
"homepage": "https://simplyrxsupplies.netlify.app",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/aryaemami59/simplyrxsupplies"
},
"name": "simply-rx-supplies",
"description": "Simply RX Supplies is a web application that serves as a tool to help make ordering pharmacy supplies easier.",
"version": "0.1.0",
"author": {
"name": "Arya Emami",
"email": "[email protected]"
},
"private": false,
"scripts": {
"clean": "rimraf dist",
"dev": "vite",
"build": "tsc -b tsconfig.build.json && vite build",
"preview": "vite preview",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"serve": "serve -s dist",
"start": "npm run dev",
"test": "vitest --run --typecheck",
"test-coverage": "vitest --run --typecheck --coverage",
"test-ui": "vitest --ui --open --coverage",
"lint": "eslint --flag unstable_ts_config -c eslint.config.mts",
"lint-fix": "eslint --flag unstable_ts_config -c eslint.config.mts --fix",
"format": "prettier --write .",
"format-check": "prettier --check .",
"bench": "vitest --run bench",
"type-check": "tsc -p tsconfig.json --noEmit",
"type-check-with-trace": "rm -rf trace && tsc --noEmit --generateTrace ./trace && npx @typescript/analyze-trace trace && rm -rf trace"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@fortawesome/fontawesome-free": "^6.6.0",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mui/icons-material": "^6.1.6",
"@mui/material": "^6.1.6",
"@reduxjs/toolkit": "^2.3.0",
"axios": "^1.7.7",
"bootstrap": "^5.3.3",
"print-js": "^1.6.0",
"prop-types": "^15.8.1",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"react-bootstrap": "^2.10.5",
"react-dom": "^18.3.1",
"react-infinite-scroll-component": "^6.1.0",
"react-mobile-share": "^2.2.3",
"react-redux": "^9.1.2",
"react-router-dom": "^6.28.0",
"reselect": "^5.1.1"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@reverecre/eslint-plugin-fontawesome": "^1.3.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/react-render-stream": "^1.0.3",
"@testing-library/user-event": "^14.5.2",
"@types/css-mediaquery": "^0.1.4",
"@types/eslint__js": "^8.42.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^22.9.0",
"@types/qrcode": "^1.5.5",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/redux-logger": "^3.0.13",
"@types/reselect-tools": "^0.0.0",
"@typescript/analyze-trace": "^0.10.1",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/browser": "^2.1.4",
"@vitest/coverage-istanbul": "^2.1.4",
"@vitest/coverage-v8": "^2.1.4",
"@vitest/eslint-plugin": "^1.1.7",
"@vitest/ui": "^2.1.4",
"@welldone-software/why-did-you-render": "^8.0.3",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"css-mediaquery": "^0.1.2",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.4.3",
"eslint-plugin-prefer-arrow-functions": "^3.4.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tsdoc": "^0.3.0",
"gh-pages": "^6.2.0",
"happy-dom": "^15.11.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"jiti": "^2.4.0",
"jsdom": "^25.0.1",
"msw": "^2.6.1",
"prettier": "^3.3.3",
"redux-logger": "^3.0.6",
"reselect-tools": "^0.0.7",
"rimraf": "^6.0.1",
"rollup-plugin-visualizer": "^5.12.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"vite": "^5.4.10",
"vite-plugin-babel-macros": "^1.0.6",
"vitest": "^2.1.4",
"vitest-dom": "^0.1.1",
"webdriverio": "^9.2.8"
}
}