-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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
{
"name": "meraki2azure-msal",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"devstart": "nodemon ./bin/www",
"serverstart": "SET DEBUG=meraki2azure-msal:* & npm run devstart",
"format:check": "prettier --check src/.",
"format:write": "prettier --write src/.",
"lint:check": "eslint src/.",
"lint:fix": "eslint --fix src/."
},
"dependencies": {
"@azure/msal-node": "^3.2.2",
"axios": "^1.7.9",
"cookie": "^1.0.2",
"cookie-parser": "^1.4.7",
"debug": "~4.4.0",
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"express": "^4.21.1",
"express-rate-limit": "^7.5.0",
"express-session": "^1.18.1",
"helmet": "^8.0.0",
"http-errors": "~2.0.0",
"joi": "^17.13.3",
"morgan": "~1.10.0",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"nodemon": "^3.1.9",
"prettier": "^3.5.1"
}
}