forked from smart-on-fhir/smart-launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.46 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
{
"name": "smart-launcher",
"version": "0.1.1",
"description": "Launcher for SMART apps",
"main": "./src/index.js",
"scripts": {
"watch": "DOTENV_CONFIG_PATH=env/development.env node -r dotenv/config ./node_modules/.bin/nodemon ./src/index.js",
"watchWin": "env\\development.bat && node_modules\\.bin\\nodemon .\\src\\index.js",
"start": "node ./src/index.js",
"test": "DOTENV_CONFIG_PATH=env/test.env node -r dotenv/config ./node_modules/.bin/mocha test/*.js --exit",
"test:cover": "DOTENV_CONFIG_PATH=env/test.env node -r dotenv/config ./node_modules/.bin/nyc --reporter=lcov --reporter=text mocha test/*.js",
"test:watch": "DOTENV_CONFIG_PATH=env/test.env node -r dotenv/config ./node_modules/.bin/nodemon -w ./test ./node_modules/.bin/nyc --reporter=lcov mocha -R progress test/*.js",
"coverage": "DOTENV_CONFIG_PATH=env/test.env node -r dotenv/config ./node_modules/.bin/nyc report",
"test:e2e": "NODE_ENV=test node ./selenium-download.js && ./node_modules/nightwatch/bin/nightwatch",
"cert": "openssl genrsa -out private-key.pem 2048 && openssl rsa -in private-key.pem -outform PEM -pubout -out public-key.pem",
"dev": "concurrently npm:watch npm:test:watch"
},
"author": "Dan Gottlieb, Vladimir Ignatov",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/smart-on-fhir/smart-launcher.git"
},
"bugs": {
"url": "https://github.com/smart-on-fhir/smart-launcher/issues"
},
" homepage": "http://launch.smarthealthit.org/",
"dependencies": {
"base64-url": "^2.0.0",
"body-parser": "^1.14.1",
"colors": "^1.1.2",
"concurrently": "^5.2.0",
"cors": "^2.7.1",
"dotenv": "^6.2.0",
"express": "^4.13.3",
"jsonwebtoken": "^5.4.0",
"jwk-to-pem": "^1.2.6",
"morgan": "^1.10.0",
"pem": "^1.14.4",
"pem-jwk": "^1.5.1",
"replaceall": "^0.1.6",
"replacestream": "^4.0.3",
"request": "^2.88.2",
"ursa-purejs": "0.0.3"
},
"devDependencies": {
"@types/base64-url": "^2.2.0",
"@types/chai": "^4.2.11",
"@types/express": "^4.17.6",
"@types/jsonwebtoken": "^8.5.0",
"@types/jwk-to-pem": "^2.0.0",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.14",
"@types/request": "^2.48.5",
"@types/supertest": "^2.0.9",
"chai": "^4.2.0",
"mocha": "^8.0.1",
"nightwatch": "^1.3.6",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"selenium-download": "^2.0.15",
"supertest": "^4.0.2",
"typescript": "^2.6.1"
}
}