-
Notifications
You must be signed in to change notification settings - Fork 448
/
Copy pathpackage.json
119 lines (119 loc) · 4.11 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "fuel-wallet-repo",
"version": "0.0.1",
"private": true,
"description": "Fuel Wallet",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"engines": {
"node": ">=18.14.1",
"pnpm": ">=8"
},
"homepage": "https://github.com/FuelLabs/fuels-wallet",
"repository": {
"type": "git",
"url": "git+https://github.com/FuelLabs/fuels-wallet.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/FuelLabs/fuels-wallet/issues"
},
"workspaces": ["./packages/*"],
"scripts": {
"build:website": "node ./scripts/build-website/index.mjs",
"build:preview": "turbo run build:preview",
"build:all": "turbo run build:all",
"build:docs": "turbo run build:docs",
"build:web": "turbo run build:web",
"build:crx": "turbo run build:crx",
"build:app": "turbo run build:app",
"build:libs": "turbo run build",
"changeset": "changeset",
"changeset:empty": "changeset --empty",
"changeset:release": "changeset publish --no-git-tag",
"changeset:version": "changeset version",
"changeset:check": "changeset status --since=master",
"deps:update": "updates -gu && pnpm -r exec updates -gu",
"dev": "./scripts/dev.sh",
"dev:storybook": "./scripts/dev.sh --storybook",
"dev:docs": "./scripts/dev.sh --docs",
"dev:crx": "./scripts/dev.sh --crx",
"dev:e2e-contracts": "./scripts/dev.sh --e2e-contracts-test",
"lint:check": "biome check --apply-unsafe .",
"lint:ci": "biome lint --max-diagnostics=1000 --diagnostic-level=error .",
"format": "biome format --write .",
"node:up": "make -C ./docker up",
"node:down": "make -C ./docker down",
"node:clean": "make -C ./docker clean",
"packages:version": "node ./scripts/version.js",
"storybook": "pnpm -r --filter=fuels-wallet storybook",
"test": "turbo run test --parallel",
"test:ci": "turbo run test --parallel -- --ci --testLocationInResults --json --coverage",
"test:clear": "pnpm -r exec jest --clearCache",
"test:coverage": "turbo run test --parallel -- --coverage",
"test:e2e": "playwright test --config=packages/app/playwright.config.ts",
"test:e2e:contracts": "playwright test --config=packages/e2e-contract-tests/playwright.config.ts",
"test:appfile": "pnpm --filter=fuels-wallet test --",
"ts:check": "turbo run ts:check",
"prepare": "husky install",
"xstate:typegen": "pnpm -r xstate:typegen"
},
"dependencies": {
"compare-versions": "^6.1.0",
"execa": "^8.0.1"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@biomejs/biome": "1.6.1",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@fuels/ts-config": "0.19.0",
"@jest/types": "29.6.3",
"@playwright/test": "1.39.0",
"@types/jest": "^29.5.5",
"@types/node": "20.8.4",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@xstate/cli": "0.5.2",
"dotenv": "^16.3.1",
"fs-extra": "^11.1.1",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"turbo": "^1.10.15",
"typescript": "^5.2.2",
"updates": "^15.0.2"
},
"pnpm": {
"peerDependencyRules": {
"allowAny": ["react", "react-dom"],
"ignoreMissing": ["react", "react-dom"]
},
"overrides": {
"follow-redirects": ">=1.15.6",
"glob-parent@<5.1.2": ">=5.1.2",
"json5": ">=2.2.2",
"trim-newlines@<3.0.1": ">=3.0.1",
"trim@<0.0.3": ">=0.0.3",
"debug@<3.1.0": ">=3.1.0",
"vite@<2.9.16": ">=2.9.16",
"semver@<7.5.2": ">=7.5.2",
"node-fetch@<2.6.7": ">=2.6.7",
"word-wrap": "npm:@aashutoshrathi/word-wrap",
"cross-fetch": "4.0.0",
"pnpm@>=8.0.0 <8.6.8": ">=8.6.8",
"@adobe/css-tools": ">=4.3.1",
"postcss@<8.4.31": ">=8.4.31",
"zod@<=3.22.2": ">=3.22.3",
"nth-check": ">=2.1.1",
"@adobe/css-tools@<4.3.2": ">=4.3.2",
"@babel/traverse@<7.23.2": ">=7.23.2"
}
}
}