-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.83 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
{
"name": "netizap",
"version": "0.0.1",
"description": "Integração com a API NetiZap para trabalhar mensagens para o Whatsapp.",
"main": "./dist/server.ts",
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"form-data": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/node": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.23",
"@types/node": "^15.6.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.3",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"ts-node-dev": "^1.1.6",
"ts-node-paths": "^1.0.1",
"typescript": "^4.2.4"
},
"scripts": {
"start": "node dist/server.js",
"build": "babel src --extensions \".js,.ts\" --out-dir dist --copy-files --no-copy-ignored",
"dev": "ts-node-dev --respawn --transpile-only --ignore-watch node_modules -r tsconfig-paths/register src/server.ts",
"testes": "ts-node-dev --respawn --transpile-only --ignore-watch node_modules -r tsconfig-paths/register src/tests/services.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xpagencia/netizap.git"
},
"keywords": [
"netizap",
"whatsapp",
"node",
"api-rest"
],
"author": "Fabio Santos",
"license": "MIT",
"bugs": {
"url": "https://github.com/xpagencia/netizap/issues"
},
"homepage": "https://github.com/xpagencia/netizap#readme"
}