-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 2.39 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
76
77
78
{
"name": "@wppconnect/wa-js-api-server",
"version": "1.0.0",
"description": "",
"license": "Apache-2.0",
"author": {
"name": "Edgard Messias",
"email": "[email protected]",
"url": "https://github.com/edgardmessias"
},
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"changelog:last": "conventional-changelog -p angular -r 2",
"changelog:preview": "conventional-changelog -p angular -u",
"changelog:update": "conventional-changelog -p angular -i CHANGELOG.md -s",
"clean": "shx rm -rf dist",
"commit": "cz",
"lint": "npx eslint --ext .ts src",
"prepare": "husky install && npm run clean && npm run build",
"release": "release-it",
"start": "node ./dist/server.js",
"watch": "tsc -w"
},
"dependencies": {
"@rgba-image/png": "^0.1.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"class-validator-jsonschema": "^3.1.1",
"cors": "^2.8.5",
"dotenv": "^16.1.3",
"dotenv-expand": "^8.0.3",
"envalid": "^7.3.1",
"express": "^4.19.2",
"helmet": "^5.1.1",
"html-entities": "^2.3.3",
"lru-cache": "^7.14.0",
"metadata-scraper": "^0.2.61",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"node-fetch": "^2.6.11",
"pngjs": "^6.0.0",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.10.4",
"routing-controllers-openapi": "^3.1.0",
"swagger-ui-express": "^4.6.3",
"winston": "^3.9.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@commitlint/prompt-cli": "^17.8.1",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.21",
"@types/lru-cache": "^7.10.10",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/node": "^16.18.34",
"@types/node-fetch": "^2.6.4",
"@types/pngjs": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"release-it": "^15.4.1",
"shx": "^0.3.4",
"typescript": "^4.8.2"
}
}