-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 929 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
{
"name": "demo-oauth2-consumer_app_nodejs",
"version": "2.0.0",
"description": "oauth demo app",
"private": true,
"main": "app.js",
"scripts": {
"startapp": "node app.js",
"start": "env-cmd -f .env.dev node --watch app.js",
"startprd": "env-cmd -f .env.prd node --watch app.js",
"startacc": "env-cmd -f .env.acc node --watch app.js",
"lint": "eslint .",
"test": "echo \"no tests\" && npm run lint"
},
"author": "Digipolis",
"dependencies": {
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"ejs": "3.1.9",
"elastic-apm-node": "^4.3.0",
"express": "^4.18.2",
"helmet": "^7.1.0",
"jwt-decode": "^4.0.0",
"oauth": "0.10.0",
"openid-client": "^5.6.1",
"pkce-challenge": "^4.0.1"
},
"devDependencies": {
"env-cmd": "^10.1.0",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0"
}
}