-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.11 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
69
70
71
72
73
74
75
{
"name": "call-service",
"description": "https://github.com/jrcleber/call-service/README.md",
"version": "1.0.0",
"main": "main.js",
"license": "BSD 4-Clause",
"engines": {
"node": "^16.10.0"
},
"author": {
"name": "jrCleber",
"url": "https://github.com/jrCleber",
"email": "cleber@codechat.dev"
},
"bugs": {
"url": "https://github.com/jrcleber/call-service/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jrcleber/call-service.git"
},
"private": true,
"scripts": {
"build": "sh ./build.sh",
"start": "node ./dist/main.js",
"start:dev": "clear & ts-node --files --transpile-only ./src/main.ts",
"test": "clear & tsnd --files --transpile-only --respawn --ignore-watch node_modules ./test/test.ts",
"prisma:migrate": "npx prisma migrate dev --name init",
"prisma:generate": "npx prisma generate",
"prisma:stuidio": "nps prisma studio"
},
"dependencies": {
"@adiwajshing/keyed-db": "^0.2.4",
"@hapi/boom": "^10.0.0",
"@prisma/client": "^4.1.1",
"axios": "^0.27.2",
"cors": "^2.8.5",
"dayjs": "^1.11.4",
"eventemitter2": "^6.4.6",
"futoin-hkdf": "^1.5.1",
"jimp": "^0.16.1",
"js-yaml": "^4.1.0",
"libsignal": "^2.0.1",
"link-preview-js": "^3.0.3",
"music-metadata": "^8.0.1",
"node-cache": "^5.1.2",
"path": "^0.12.7",
"pino": "^8.3.0",
"protobufjs": "^7.0.0",
"qrcode-terminal": "^0.12.0",
"sharp": "^0.30.7",
"ws": "^8.8.1",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/eventemitter2": "^4.1.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.0.6",
"@types/node-cache": "^4.2.5",
"@types/ws": "^8.5.3",
"@types/xlsx": "^0.0.36",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"prisma": "^4.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.4"
}
}