This repository has been archived by the owner on Aug 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 2.01 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
68
{
"name": "3cx-tools-server",
"version": "0.1.0",
"description": "Service to inject custom functionality into a 3CX instance.",
"main": "build/src/main.js",
"engines": {
"node": ">= 16.13"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/jest": "~27.0.2",
"@types/lodash": "^4.14.178",
"@types/node": "~16.11.6",
"@types/pg": "^8.6.2",
"@typescript-eslint/eslint-plugin": "~5.7.0",
"@typescript-eslint/parser": "~5.7.0",
"eslint": "~8.4.1",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-jest": "~25.3.0",
"jest": "~27.4.4",
"nodemon": "^2.0.15",
"prettier": "~2.5.1",
"rimraf": "~3.0.2",
"socket.io-client": "^4.4.0",
"ts-jest": "~27.1.1",
"ts-node": "^10.4.0",
"tsutils": "~3.21.0",
"typescript": "~4.5.3"
},
"scripts": {
"start": "NODE_ENV=production node build/src/main.js",
"dev": "NODE_ENV=development ts-node src/main.ts",
"dev:service": "NODE_ENV=development ts-node src/main.ts run-as-service",
"dev:service:build": "NODE_ENV=development nodemon --watch build/src build/src/main.js run-as-service",
"prebuild": "npm run lint",
"build": "tsc",
"build:watch": "tsc -w",
"lint": "eslint . --ext .ts,.tsx",
"test": "NODE_ENV=development jest",
"test:watch": "NODE_ENV=development jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adroste/3cx-tools.git"
},
"author": "Alexander Droste",
"license": "MIT",
"bugs": {
"url": "https://github.com/adroste/3cx-tools/issues"
},
"homepage": "https://github.com/adroste/3cx-tools",
"dependencies": {
"@adroste/3cx-api": "^0.36.2-dev.2",
"app-root-path": "^3.0.0",
"axios": "^0.24.0",
"commander": "^8.3.0",
"console-stamp": "^3.0.3",
"cors": "^2.8.5",
"express": "^4.17.2",
"fs-extra": "^10.0.0",
"lodash": "^4.17.21",
"pg": "^8.7.1",
"socket.io": "^4.4.0",
"tslib": "~2.3.1"
}
}