-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.28 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.28 KB
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
{
"name": "@bahatron/mercurios",
"version": "3.1.4",
"description": "mercurios client",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "simonpiscitelli@gmail.com",
"license": "Apache-2.0",
"scripts": {
"prepublishOnly": "npm run build:dist && npm run test",
"build": "tsc",
"build:clean": "rm -rf dist && npm run build",
"build:dist": "rm -rf dist && tsc -p tsconfig.build.json",
"test": "jest --forceExit --runInBand",
"test:ci": "npm run test -- --silent --reporters=default --reporters=jest-stare",
"pm2": "tsc --watch & pm2-runtime start process.config.js",
"dev": "docker-compose up --force-recreate --renew-anon-volumes --abort-on-container-exit"
},
"dependencies": {
"@bahatron/utils": "^3.7.3",
"knex": "^2.5.1",
"pg": "^8.11.5"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^28.1.8",
"@types/morgan": "^1.9.9",
"@types/node": "^18.19.33",
"express": "^4.19.2",
"jest": "^28.1.3",
"jest-stare": "^2.5.1",
"morgan": "^1.10.0",
"swagger-ui-express": "^4.6.3",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
}
}