-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.28 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
{
"name": "umami",
"author": "Trilitech <[email protected]>",
"description": "Tezos Wallet",
"homepage": "https://umamiwallet.com",
"repository": "https://github.com/trilitech/umami-v2",
"license": "MIT",
"engines": {
"node": ">=20 <21.0.0",
"pnpm": ">=9.7.0"
},
"packageManager": "[email protected]",
"scripts": {
"build": "turbo build",
"build:watch": "turbo watch build:quick --filter=./packages/\\*",
"clean": "rimraf .turbo && turbo clean",
"test": "turbo test",
"lint": "turbo lint",
"format": "turbo format",
"ci": "turbo check-types lint:ci format:ci check-circular-deps",
"check-types": "turbo check-types",
"test:e2e": "turbo test:e2e",
"dev:desktop": "turbo dev --filter=@umami/desktop",
"dev:web": "turbo dev --filter=@umami/web",
"storybook": "turbo dev --filter=@umami/storybook"
},
"devDependencies": {
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"turbo": "^2.3.2"
},
"resolutions": {
"@typescript-eslint/utils": "^7.15.0",
"esbuild": "^0.23.0",
"rollup": "^4.22.4",
"body-parser": "^1.20.3",
"path-to-regexp": "^0.1.11",
"send": "^0.19.0",
"serve-static": "^1.16.0",
"express": "^4.20.0",
"micromatch": "^4.0.8",
"cookie": "^0.7.2",
"elliptic": "^6.6.1"
}
}