-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.3 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.3 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
{
"name": "canton-counter-scaffold",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"canton:up": "npm --prefix canton-barebones run up",
"canton:down": "npm --prefix canton-barebones run down",
"canton:health": "npm --prefix canton-barebones run health",
"canton:token": "npm --prefix canton-barebones run token",
"build-dar": "bash scripts/build-dar.sh",
"deploy-dar": "bash canton-barebones/scripts/deploy-dar.sh",
"wallet:dev": "npm --prefix carpincho-wallet run dev",
"wallet-service:dev": "npm --prefix canton-barebones/wallet-service run dev",
"wallet-service:health": "curl -fsS http://localhost:3010/health",
"carpincho:build:extension": "npm --prefix carpincho-wallet run build:extension",
"app:dev": "npm --prefix counter/frontend run dev -- --host localhost --port 3012 --strictPort",
"lint": "biome check",
"lint:fix": "biome check --write",
"format": "biome format --write",
"e2e": "npm --prefix e2e test",
"e2e:headed": "npm --prefix e2e run test:headed",
"e2e:ui": "npm --prefix e2e run test:ui",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.4"
}
}