-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
67 lines (67 loc) · 2.1 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "alephium-frontend",
"description": "A monorepo containing all things frontend on Alephium",
"author": "Alephium dev <dev@alephium.org>",
"packageManager": "pnpm@9.4.0",
"private": true,
"scripts": {
"watch": "turbo watch-dev",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"test": "turbo test",
"typecheck": "turbo typecheck",
"check": "turbo typecheck lint format",
"check:deps": "manypkg check",
"check:deps:fix": "manypkg fix",
"clean": "turbo clean && rm -rf .turbo",
"clean:node-modules": "rm -rf node_modules && turbo clean:node-modules",
"postinstall": "pnpm check:deps"
},
"resolutions": {
"semver": "^7.5.2"
},
"engines": {
"node": ">=20"
},
"pnpm": {
"patchedDependencies": {
"react-native-aes-crypto@2.1.1": "patches/react-native-aes-crypto@2.1.1.patch",
"react-native-background-actions@3.0.1": "patches/react-native-background-actions@3.0.1.patch",
"@metamask/scure-bip39@2.1.1": "patches/@metamask__scure-bip39@2.1.1.patch"
},
"overrides": {
"ip@<=2.0.0": ">=2.0.1",
"undici@<=5.28.2": ">=5.28.3",
"tar@<6.2.1": ">=6.2.1",
"braces@<3.0.3": ">=3.0.3",
"ws@<8.17.1": ">=8.17.1",
"app-builder-lib@<24.13.2": ">=24.13.2",
"follow-redirects@<=1.15.5": ">=1.15.6",
"undici@>=6.0.0 <6.11.1": ">=6.11.1",
"ejs@<3.1.10": ">=3.1.10",
"fast-loops@<1.1.4": ">=1.1.4",
"fast-xml-parser@<4.4.1": ">=4.4.1",
"micromatch@<4.0.8": ">=4.0.8",
"send@<0.19.0": ">=0.19.0",
"serve-static@<1.16.0": ">=1.16.0",
"path-to-regexp@>=2.0.0 <3.3.0": ">=3.3.0",
"rollup@>=4.0.0 <4.22.4": ">=4.22.4",
"elliptic@<6.6.0": ">=6.6.0",
"@sentry/browser@<7.119.1": ">=7.119.1",
"cross-spawn@<7.0.5": ">=7.0.5"
}
},
"manypkg": {
"ignoredRules": [
"INTERNAL_MISMATCH"
]
},
"devDependencies": {
"@alephium/eslint-config": "workspace:*",
"@alephium/typescript-config": "workspace:*",
"@changesets/cli": "^2.26.2",
"@manypkg/cli": "latest",
"prettier": "^3.0.3",
"turbo": "1.13.4"
}
}