-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
35 lines (35 loc) · 1020 Bytes
/
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
{
"name": "node-openid",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node -r dotenv/config ./src/index.ts",
"start:client1": "DOTENV_CONFIG_PATH=.env.client1 ts-node -r dotenv/config ./src/index.ts",
"start:client2": "DOTENV_CONFIG_PATH=.env.client2 ts-node -r dotenv/config ./src/index.ts",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cookie-parser": "^1.4.5",
"debug": "^4.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mustache-express": "^1.3.0",
"node-ts": "^5.0.9",
"openid-client": "^4.2.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/debug": "^4.1.5",
"@types/dotenv": "^8.2.0",
"@types/mustache-express": "^1.2.1",
"prettier": "^2.1.2"
}
}