-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.41 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
{
"name": "sample-sms-async-connector",
"version": "1.0.0",
"description": "SMS - AXP Messaging Connector",
"main": "server.js",
"scripts": {
"dev": "NODE_ENV=development ./node_modules/.bin/nodemon --exec './node_modules/.bin/ts-node' src/server.ts",
"start": "npm run build && NODE_ENV=production node ./dist/server.js",
"build": "tsc",
"code:format": "prettier --write \"src/**/*.{ts,css,js,html}\"",
"code:check": "prettier --check \"src/**/*.{ts,css,js,html}\"",
"code:format:specific-file": "prettier --write ",
"test": "jest"
},
"author": "Avaya, LLC.",
"license": "MIT",
"dependencies": {
"axios": "^1.5.1",
"axios-logger": "^2.7.0",
"body-parser": "^1.20.2",
"body-parser-xml": "^2.0.5",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-winston": "^4.2.0",
"helmet": "^7.0.0",
"path": "^0.12.7",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.10.4",
"routing-controllers-openapi": "^4.0.0",
"typedi": "^0.10.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/body-parser-xml": "^2.0.4",
"@types/express": "^4.17.20",
"@types/node": "^20.8.8",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}