forked from ton-blockchain/acton
-
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) · 886 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 886 Bytes
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": "acton",
"version": "1.1.0",
"private": true,
"license": "MIT OR Apache-2.0",
"author": "TON Core",
"type": "module",
"workspaces": [
"crates/acton-localnet-ui",
"crates/acton-shared-ui",
"crates/acton-test-ui"
],
"scripts": {
"build": "bun --filter '*' build",
"dev:localnet": "bun --filter acton-localnet-ui dev",
"dev:test": "bun --filter acton-test-ui dev",
"fmt": "bun --filter '*' fmt",
"fmt:check": "bun --filter '*' fmt:check",
"lint": "bun --filter '*' lint",
"lint:fix": "bun --filter '*' lint:fix",
"test:e2e:test-ui": "playwright test --config crates/acton-test-ui/playwright.config.ts"
},
"overrides": {
"postcss": ">=8.5.10",
"qs": ">=6.15.2",
"uuid": ">=14.0.0",
"ws": ">=8.21.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@playwright/test": "1.59.0"
}
}