-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
37 lines (37 loc) · 1.45 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
{
"name": "Keagate",
"version": "1.0.0",
"description": "\"# Keagate\"",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm --filter \"*\" prebuild && tsc --build ./tsconfig.project.json",
"start:pm2-stop": "pm2 stop Keagate || true",
"start:pm2-del": "pm2 del Keagate || true",
"start:build-invoice-client": "pnpm --filter \"invoice-client\" build",
"start:pm2-start": "pm2 start packages/backend/build/index.js --name \"Keagate\" --time && pm2 save",
"start": "npm-run-all start:pm2-stop start:pm2-del start:build-invoice-client start:pm2-start",
"clean": "pnpm --filter \"*\" clean && shx rm -rf pnpm-lock.yaml node_modules",
"dev": "npm-run-all build --parallel dev:*",
"dev:backend": "pnpm --filter \"backend\" dev",
"dev:invoice-client": "pnpm --filter \"invoice-client\" dev",
"prettier-format": "prettier --config prettier.config.js 'packages/*/src/**/*{.ts,.tsx,.js,.jsx}' --write",
"find-circular-deps": "pnpx madge --circular --extensions ts,tsx packages/"
},
"author": "dilan-dio4",
"license": "MIT",
"devDependencies": {
"@types/big.js": "^6.1.3",
"@types/multicoin-address-validator": "^0.5.0",
"@types/node": "^18.0.1",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"shx": "^0.3.4",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}