forked from Oficialfarma/powerbi-integration
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.46 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
{
"name": "powerbi-integration",
"version": "1.0.0",
"description": "Módulo para obter os dados de pedidos, centralizar na base local e utilizar as informações na criação de Dashboards.",
"main": "index.js",
"scripts": {
"dev": "set NODE_ENV=dev && ts-node ./src/index.ts",
"start": "set NODE_ENV=prod && pm2 start ./build/index.js",
"build": "tsc --build",
"test": "set NODE_ENV=test && npx jest --runInBand --detectOpenHandles",
"test:cov": "set NODE_ENV=test && npx jest --config jest.config.js --coverage --runInBand --detectOpenHandles",
"test:watch": "set NODE_ENV=test && npx jest --config jest.config.js --watchAll --runInBand --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oficialfarma-dev-projetcs/powerbi-integration.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/oficialfarma-dev-projetcs/powerbi-integration/issues"
},
"homepage": "https://github.com/oficialfarma-dev-projetcs/powerbi-integration#readme",
"dependencies": {
"axios": "^0.21.1",
"cron": "^1.8.2",
"dotenv": "^8.2.0",
"mssql": "^6.3.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/cron": "^1.7.2",
"@types/jest": "^26.0.23",
"@types/mssql": "^6.0.8",
"@types/node": "^15.0.2",
"@types/uuid": "^8.3.0",
"jest": "^26.5.0",
"ts-jest": "^26.5.2",
"ts-node": "^10.0.0",
"typescript": "^4.2.2"
}
}