-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.53 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.53 KB
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
68
69
70
71
72
73
{
"name": "server",
"version": "0.0.1",
"private": true,
"description": "This is the server side that supports all ACS sample applications",
"scripts": {
"build": "npm run clean && webpack --mode=production --env production",
"clean": "rimraf dist",
"start": "ts-node ./bin/www",
"start:dev": "ts-node-dev ./bin/www",
"start:debug": "node --inspect=9229 -r ts-node/register ./bin/www",
"test": "jest",
"test:stable": "echo skip",
"prettier": "prettier --no-error-on-unmatched-pattern --write --config ./.prettierrc --ignore-path=./.prettierignore \"**/*.js\" \"**/*.jsx\" \"**/*.ts\" \"**/*.tsx\"",
"prettier:check": "prettier --no-error-on-unmatched-pattern --check --config ./.prettierrc --ignore-path=./.prettierignore \"**/*.js\" \"**/*.jsx\" \"**/*.ts\" \"**/*.tsx\"",
"lint": "eslint */**/*.{ts,tsx}",
"lint:fix": "eslint */**/*.{ts,tsx} --fix",
"lint:quiet": "eslint */**/*.{ts,tsx} --quiet"
},
"license": "MIT",
"dependencies": {
"@azure/communication-chat": "^1.5.0",
"@azure/communication-common": "^2.3.1",
"@azure/communication-identity": "^1.3.0",
"@azure/storage-blob": "^12.15.0",
"@types/cors": "^2.8.8",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"debug": "^2.6.9",
"eslint-plugin-header": "^3.1.0",
"express": "^5.0.1",
"http-errors": "^1.6.3",
"morgan": "^1.9.1",
"node-fetch": "2.6.7",
"multer": "2.0.1",
"@types/multer": "^1.4.11"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/copy-webpack-plugin": "^6.4.0",
"@types/express": "^4.17.8",
"@types/http-errors": "^1.8.0",
"@types/jest": "^29.5.11",
"@types/morgan": "^1.9.2",
"@types/node": "^22.15.18",
"@types/supertest": "^2.0.12",
"@types/webpack-node-externals": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"copy-webpack-plugin": "^11.0.0",
"cpx": "^1.5.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^8.0.3",
"jest": "29.7.0",
"jest-junit": "^16.0.0",
"prettier": "2.3.1",
"pretty-quick": "^3.1.0",
"rimraf": "^2.6.2",
"supertest": "^6.3.3",
"ts-jest": "^29.1.2",
"ts-loader": "^8.0.12",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "5.4.2",
"webpack": "5.96.1",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
}