-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 840 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 840 Bytes
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
{
"name": "webextension-service-mock",
"version": "1.0.0",
"private": true,
"scripts": {
"lint": "eslint . --ext .js",
"dev:start": "npm-run-all lint start",
"dev": "nodemon --watch lib --exec npm run dev:start",
"start": "node ./bin/webextension-service-mock",
"start:no-csp": "node ./bin/webextension-service-mock --no-csp"
},
"author": "Tanel Metsar",
"license": "MIT",
"dependencies": {
"@web-eid/web-eid-library": "~2.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"express": "^4.22.1",
"express-session": "^1.18.2",
"hbs": "^4.2.0",
"helmet": "^4.6.0",
"http-errors": "~1.6.3",
"morgan": "~1.10.1"
},
"devDependencies": {
"eslint": "^8.2.0",
"nodemon": "^2.0.14",
"npm-run-all": "^4.1.5"
},
"overrides": {
"handlebars": "4.7.9"
}
}