forked from HL7-DaVinci/crd-request-generator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.95 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
{
"name": "request-generator",
"version": "0.1.0",
"private": false,
"homepage": "https://mcode.github.io/request-generator/",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.9",
"@mui/material": "^5.14.10",
"@mui/styles": "^5.14.10",
"@vitejs/plugin-react": "^4.2.1",
"axios": "^0.18.0",
"base64url": "^3.0.0",
"classnames": "^2.2.6",
"dotenv": "^16.3.1",
"env-var": "^7.3.1",
"fhirclient": "^2.3.1",
"json-server": "^0.16.3",
"jsrsasign": "^10.2.0",
"keypair": "^1.0.1",
"lodash": "^4.17.15",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-markdown": "^8.0.7",
"react-router-dom": "^6.17.0",
"uuid": "^9.0.1",
"vite": "^5.1.6",
"vite-tsconfig-paths": "^4.3.2"
},
"scripts": {
"start": "vite",
"production": "json-server --watch src/db.json -p 3000 --host 0.0.0.0 --static build",
"build": "node build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint \"**/*.{js,jsx}\"",
"lint:fix": "eslint \"**/*.{js,jsx}\" --fix",
"prettier": "prettier --check \"**/*.{js,jsx,json}\"",
"prettier:fix": "prettier --write \"**/*.{js,jsx,json}\"",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-react": "^7.22.15",
"concurrently": "^4.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"fs": "0.0.1-security",
"gh-pages": "6.0.0",
"jju": "^1.4.0",
"prettier": "^3.0.3",
"rewire": "^7.0.0",
"vite-plugin-node-polyfills": "^0.21.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}