-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
60 lines (60 loc) · 2.15 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
{
"name": "smart-launcher",
"version": "2.0.0",
"description": "Launcher for SMART apps",
"main": "./src/index.js",
"engines": {
"node": "16"
},
"scripts": {
"watch": "DOTENV_CONFIG_PATH=env/development.env node -r dotenv/config ./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",
"test:cover": "DOTENV_CONFIG_PATH=env/test.env node -r dotenv/config ./node_modules/.bin/nyc --reporter=lcov --reporter=text mocha --exit test/*.js",
"test:watch": "DOTENV_CONFIG_PATH=env/test.env node -r dotenv/config ./node_modules/.bin/mocha test/*.js --watch",
"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": {
"body-parser": "^1.14.1",
"concurrently": "^5.2.0",
"cors": "^2.7.1",
"dotenv": "^6.2.0",
"express": "^4.17.1",
"got": "^9.6.0",
"jsonwebtoken": "^8.5.1",
"node-jose": "^2.0.0",
"pem": "^1.14.4",
"pem-jwk": "^1.5.1",
"replacestream": "^4.0.3"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/express": "^4.17.12",
"@types/jsonwebtoken": "^8.5.1",
"@types/mocha": "^7.0.2",
"@types/node": "^15.12.2",
"@types/node-jose": "^1.1.6",
"@types/supertest": "^2.0.11",
"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": "^6.1.3",
"typescript": "^2.6.1"
}
}