forked from E-Health/fred
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
113 lines (113 loc) · 3.87 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
{
"name": "SAGE",
"version": "0.7.0",
"description": "Based off of FRED (https://github.com/smart-on-fhir/fred), originally authored by Dan Gottlieb",
"type": "module",
"scripts": {
"dev": "webpack serve --devtool eval-cheap-module-source-map --config webpack.config.cjs --color",
"start": "node --max-old-space-size=2048 node_modules/webpack-dev-server/bin/webpack-dev-server.js",
"build-profiles": "./node_modules/.bin/coffee ./scripts/simplify-profiles.coffee",
"build": "webpack --env build --output-path ./public --config webpack.config.cjs",
"esbuild": "node esbuild.cjs",
"tsc": "tsc --noEmit",
"tsc-then-esbuild": "npm run tsc && npm run esbuild",
"esbuild-start": "node server.cjs & nodemon -e ts,tsx,js,jsx --watch src --exec 'npm run tsc-then-esbuild'",
"test": "jest",
"test-ci": "jest --runInBand",
"lint": "eslint ./",
"test-watch": "./node_modules/.bin/mocha -w",
"deploy-gh": "git subtree push --prefix public origin gh-pages",
"reset-gh-pages": "git push origin `git subtree split --prefix output gh-pages`:gh-pages --force",
"prepare": "husky install",
"static-analysis": "eslint --ext .ts --ext .js --ext .tsx src",
"fix-src": "eslint --ext .ts --ext .js --ext .tsx src --fix"
},
"author": "Purajuniper",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.7",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/fhir": "0.0.34",
"@types/jest": "^27.0.2",
"@types/jquery": "^3.5.8",
"@types/lodash": "^4.14.180",
"@types/luxon": "^2.3.1",
"@types/react": "^16.14.0",
"@types/react-dates": "^21.8.3",
"@types/react-dom": "^16.9.14",
"@types/uuid": "^8.3.2",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@webpack-cli/serve": "^1.6.0",
"cjsx-loader": "^3.0.0",
"coffee-loader": "^3.0.0",
"coffee-script": "^1.12.7",
"coffeescript": "^2.6.1",
"css-loader": "^6.6.0",
"dotenv": "^16.0.0",
"dotenv-webpack": "^7.1.0",
"esbuild": "^0.14.30",
"eslint": "^8.2.0",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^5.0.3",
"express": "^4.17.3",
"husky": "^7.0.4",
"jest": "^27.3.1",
"json-loader": "^0.5.7",
"jsx-loader": "^0.13.2",
"mocha": "^9.1.3",
"msw": "^0.36.8",
"nodemon": "^2.0.15",
"source-map-loader": "^3.0.1",
"style-loader": "^3.3.1",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"typescript": "^4.6.2",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0",
"webpack-file-changer": "^2.0.1"
},
"dependencies": {
"@fortawesome/fontawesome-pro": "^6.0.0",
"@fortawesome/fontawesome-svg-core": "^1.3.0",
"@fortawesome/pro-solid-svg-icons": "^6.0.0",
"@fortawesome/react-fontawesome": "^0.1.17",
"axios": "^0.24.0",
"babel-loader": "^8.2.3",
"bootstrap": "^5.1.3",
"cql-execution": "^2.3.3",
"file-loader": "^6.2.0",
"file-saver": "^2.0.5",
"freezer-js": "^0.14.1",
"fs": "^0.0.1-security",
"jquery": "^3.6.0",
"jszip": "^3.7.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"osh-async-parallel": "0.0.0",
"react": "^16.14.0",
"react-bootstrap": "^2.2.3",
"react-dates": "^21.8.0",
"react-dom": "^16.14.0",
"react-router-dom": "^6.3.0",
"react-select": "^5.2.2",
"react-step-progress-bar": "^1.0.3",
"react-transition-group": "^4.4.2",
"sanitize-caja": "^0.1.4",
"url-loader": "^4.1.1",
"uuid": "^8.3.2"
},
"keywords": [
"fhir",
"smart"
]
}