-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "shclinks",
"version": "0.1.0",
"description": "prototype for SMART Health Links",
"main": "index.js",
"scripts": {
"test": "jest --silent --runInBand",
"lint": "eslint \"**/*.js\"",
"lint:fix": "eslint \"**/*.js\" --quiet --fix",
"prettier": "prettier --check \"**/*.js\"",
"prettier:fix": "prettier --write \"**/*.js\"",
"check": "npm run lint && npm run prettier",
"start": "node src/redirect/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dvci/shclinks.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dvci/shclinks/issues"
},
"homepage": "https://github.com/dvci/shclinks#readme",
"devDependencies": {
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^28.1.0",
"prettier": "2.6.2",
"supertest": "^6.2.3"
},
"dependencies": {
"base64url": "^3.0.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"node-fetch": "^2.6.7",
"winston": "^3.7.2"
}
}