-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.92 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
{
"name": "bulk-match-provider",
"version": "1.0.0",
"description": "Bulk Match Provider",
"app": "./src/app/index.html",
"scripts": {
"start:app": "NODE_ENV=development parcel serve --target app --target sample-app --port 3457 --no-cache",
"build:app": "parcel build --target app --target sample-app",
"clean:app": "rm -rf ./dist/*",
"start:server": "ts-node --transpile-only ./src/index.ts",
"watch:server": "nodemon -w ./src -e ts,json -x 'npm run start:server'",
"clean:server": "rm -rf ./jobs/* && touch ./jobs/.gitkeep",
"dev": "npm run clean:app && npm run clean:server && PORT=3456 concurrently npm:start:app npm:watch:server",
"start": "npm run clean:app && npm run clean:server && npm run build:app && npm run start:server",
"test": "DOTENV_CONFIG_PATH=.env.test nyc --reporter=lcov mocha -r ts-node/register",
"test:watch": "nodemon -w ./test -w ./src -e ts,json -x 'npm test'"
},
"targets": {
"app": {
"source": "./src/app/index.html",
"distDir": "./dist",
"context": "browser",
"outputFormat": "global",
"isLibrary": false
},
"sample-app": {
"source": "./src/app/sample-app/index.html",
"distDir": "./dist/sample-app",
"publicUrl": "./",
"context": "browser",
"outputFormat": "global",
"isLibrary": false
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/smart-on-fhir/bulk-match-provider.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/smart-on-fhir/bulk-match-provider/issues"
},
"homepage": "https://github.com/smart-on-fhir/bulk-match-provider#readme",
"engines": {
"node": "20"
},
"dependencies": {
"@faker-js/faker": "^8.4.1",
"@parcel/transformer-sass": "^2.12.0",
"assert": "^2.1.0",
"buffer": "^6.0.3",
"concurrently": "^8.2.2",
"constants-browserify": "^1.0.0",
"cors": "^2.8.5",
"crypto-browserify": "^3.12.0",
"dotenv": "^16.4.5",
"events": "^3.3.0",
"express": "^4.18.3",
"jsonwebtoken": "^9.0.2",
"jwk-to-pem": "^2.0.5",
"moment": "^2.30.1",
"nyc": "^15.1.0",
"parcel": "^2.12.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"proper-lockfile": "^4.1.2",
"punycode": "^1.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"url": "^0.11.3",
"util": "^0.12.5",
"vm-browserify": "^1.1.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/fhir": "^0.0.41",
"@types/jsonwebtoken": "^9.0.6",
"@types/jwk-to-pem": "^2.0.3",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.26",
"@types/proper-lockfile": "^4.1.4",
"@types/react": "^18.2.65",
"@types/react-dom": "^18.2.21",
"mocha": "^10.3.0",
"nodemon": "^3.1.0"
}
}