-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.29 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
{
"name": "deposit-payments-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"prepare": "husky",
"dev": "zx startup.mjs",
"loginWithCrypto": "pnpm --filter loginWithCrypto",
"build:golem-js": "pnpm --filter golem-js build",
"build:task-executor": "pnpm --filter @golem-sdk/task-executor build",
"build:ya-ts-client": "pnpm --filter ya-ts-client build",
"build:loginWithCrypto": "pnpm --filter loginWithCrypto build",
"build:backend": "pnpm --filter deposit:backend build",
"build:frontend": "pnpm --filter deposit:frontend build",
"build:all": "pnpm build:loginWithCrypto && pnpm build:ya-ts-client && pnpm build:golem-js && pnpm build:task-executor && pnpm build:backend && pnpm build:frontend",
"start:frontend": "pnpm --filter deposit:frontend start",
"start:backend": "pnpm --filter deposit:backend start",
"start:app": "pnpm start:frontend && pnpm start:backend"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"husky": "^9.0.11"
},
"dependencies": {
"@types/jest": "^29.5.12",
"ya-ts-client": "^1.1.1"
},
"workspaces": [
"loginWithCrypto",
"backend"
]
}