-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.04 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
{
"name": "finote-project",
"version": "0.0.0-dev",
"main": "index.js",
"repository": "[email protected]:skyjackerz/finote-project.git",
"author": "haloivanid <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"server",
"packages/*"
],
"scripts": {
"server:lint": "yarn --cwd server lint",
"server:format": "yarn --cwd server format",
"server:build": "yarn --cwd server build",
"server:start": "yarn --cwd server start",
"server:dev": "yarn --cwd server start:dev",
"server:migration-gen": "yarn --cwd server migration:generate",
"server:migration-run": "yarn --cwd server migration:run",
"server:migration-revert": "yarn --cwd server migration:revert",
"server:seed-run": "yarn --cwd server seed:run",
"server:erd": "yarn --cwd server erd:build"
},
"devDependencies": {
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"erdia": "^3.7.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}