-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
67 lines (67 loc) · 2.36 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "acs-authentication-server-sample",
"description": "An ACS solution server sample to provide a guidance establishing best practices on a simple use case to build trusted backend service that will manage ACS identities by mapping them 1:1 with Azure Active Directory identities",
"version": "1.0.0",
"main": "build/server.js",
"repository": {
"type": "git",
"url": "https://github.com/Azure-Samples/communication-services-authentication-hero-nodejs"
},
"license": "MIT",
"scripts": {
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --max-warnings 0",
"lint:fix": "tsc --noEmit && eslint \"**/*.{js,ts}\" --fix --max-warnings 0",
"prettier": "npx prettier --write .",
"prettier:check": "npx prettier --check .",
"build-tsc": "tsc",
"build": "npm run prettier && npm run lint:fix && npm run build-tsc",
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"serve": "node build/server.js",
"start": "npm run build && npm run serve",
"start:dev": "nodemon --watch src/** -e ts,js --exec npm run start",
"clean": "rimraf dist",
"prod": "npm run clean && npm run build && webpack"
},
"dependencies": {
"@azure/communication-identity": "^1.1.0",
"@azure/identity": "^2.0.1",
"@azure/msal-node": "^1.5.0",
"@microsoft/microsoft-graph-client": "^2.2.1",
"cors": "^2.8.5",
"express": "~4.21.2",
"express-jwt": "^7.7.5",
"express-jwt-authz": "^2.4.1",
"express-session": "^1.17.1",
"jwks-rsa": "^2.0.5"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "~26.0.22",
"@types/node": "^16.11.11",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"copy-webpack-plugin": "^10.2.2",
"cross-fetch": "^3.1.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"jest": "26.6.0",
"json-loader": "^0.5.7",
"jwt-decode": "^3.1.2",
"nodemon": "^2.0.15",
"prettier": "2.3.2",
"rimraf": "^3.0.2",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.4.3",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2"
}
}