-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.4 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
{
"name": "bacen-simulator",
"version": "0.0.1",
"description": "BacenSimulator is a docker image to simulate Bacen, a official Brazilian payment infrastructure",
"scripts": {
"build": "tsc -p tsconfig.json",
"commit": "cz",
"dev": "turbo run dev",
"start": "turbo run start",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "turbo run format",
"test:watch": "turbo run test:watch",
"migration": "turbo run migration",
"migration:run": "turbo run migration:run",
"migration:seed": "turbo run migration:seed",
"compose:up": "docker-compose -f ./packages/docker/docker-compose.yml up -d",
"compose:down": "docker-compose -f ./packages/docker/docker-compose.yml down"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": "https://github.com/eletroswing/bacen-simulator",
"author": "eletroswing",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.6.0",
"@types/node": "^20.11.25",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-dist": "^3.30.4",
"commitizen": "^4.3.0",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"turbo": "^1.12.5",
"typescript": "^5.4.2"
},
"dependencies": {
"sqlite3": "^5.1.7",
"swagger-jsdoc": "^6.2.8",
"ts-node": "^10.9.2"
},
"workspaces": [
"packages/*",
"apps/*"
]
}