forked from l2beat/l2beat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.86 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "l2beat",
"private": true,
"license": "MIT",
"engines": {
"node": "^18.0.0",
"yarn": ">=1.22.0 <2"
},
"workspaces": {
"packages": ["packages/*"]
},
"packageManager": "yarn@1.22.19",
"scripts": {
"build": "turbo run build",
"build:backend": "turbo run build --filter=@l2beat/backend",
"build:frontend": "turbo run build --filter=@l2beat/frontend",
"build:protocolbeat": "turbo run build --filter=@l2beat/protocolbeat",
"build:tx-decoder": "turbo run build --filter=@l2beat/tx-decoder",
"build:dependencies": "turbo run build --filter=@l2beat/frontend^... --filter=@l2beat/backend^...",
"watch:dependencies": "turbo watch build --filter=@l2beat/frontend^... --filter=@l2beat/backend^...",
"clean": "turbo run clean",
"fix": "yarn lint:fix && yarn format:fix",
"format": "wsrun -ecam format",
"format:fix": "wsrun -ecam format:fix",
"lint": "wsrun -ecam lint",
"lint:fix": "wsrun -ecam lint:fix",
"start": "cd packages/backend && yarn start",
"test": "turbo run test -- --reporter progress",
"test:exclude-backend": "turbo run test --filter=!@l2beat/backend --filter=!@l2beat/database",
"typecheck": "turbo run typecheck",
"ci:check": "turbo run ci:check",
"heroku-postbuild": "yarn build:backend && yarn install --production",
"checkout": "yarn clean && yarn && yarn build"
},
"devDependencies": {
"@biomejs/biome": "1.7.0",
"@changesets/cli": "^2.26.2",
"@sinonjs/fake-timers": "^10.0.2",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.16",
"@types/sinonjs__fake-timers": "^8.1.2",
"earl": "^1.1.0",
"esbuild": "^0.20.0",
"esbuild-register": "^3.5.0",
"mocha": "^10.2.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.1",
"turbo": "^2.0.12",
"typescript": "^5.5.3",
"wait-for-expect": "^3.0.2",
"wsrun": "^5.2.4"
}
}