-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
97 lines (97 loc) · 3.07 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
{
"name": "smart-launcher",
"version": "2.0.1",
"private": true,
"engines": {
"node": ">=16"
},
"dependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"@types/fhir": "^0.0.35",
"@types/jest": "^27.5.2",
"@types/node": "^16.11.49",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"cors": "^2.8.5",
"express": "^4.18.2",
"fhirclient": "^2.5.2",
"if-env": "^1.0.4",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"node-jose": "^2.1.1",
"pem": "^1.14.6",
"pem-jwk": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"react-syntax-highlighter": "^15.5.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"web-vitals": "^2.1.4"
},
"scripts": {
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "SOURCE_VERSION=`cat .source_version` ts-node --skipProject --transpile-only backend/index.ts",
"start:dev": "PORT=8444 react-scripts start",
"start:server": "SOURCE_VERSION=`cat .source_version` PORT=8445 ts-node --skipProject --transpile-only -r dotenv/config backend/index.ts -- --trace-uncaught --trace-warnings --unhandled-rejections=strict",
"start:server:watch": "nodemon -e ts -x 'npm run start:server'",
"test:server": "nyc --reporter=lcov mocha -r dotenv/config --exit -t 5000",
"test:server:watch": "nodemon -e ts -x 'npm run test:server'",
"cert": "openssl genrsa -out private-key.pem 2048 && openssl rsa -in private-key.pem -outform PEM -pubout -out public-key.pem",
"postinstall": "echo $SOURCE_VERSION > .source_version"
},
"proxy": "http://localhost:8445",
"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": {
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/mocha": "^9.1.1",
"@types/node-jose": "^1.1.10",
"@types/pem-jwk": "^2.0.0",
"@types/react-router-dom": "^5.3.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/selenium-webdriver": "^4.1.3",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"mocha": "^8.4.0",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"selenium-webdriver": "^4.4.0",
"ts-mocha": "^10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smart-on-fhir/smart-launcher-v2.git"
},
"author": "vlad.ignatov@gmail.com",
"bugs": {
"url": "https://github.com/smart-on-fhir/smart-launcher-v2/issues"
}
}