forked from FuelLabs/fuels-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.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
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
{
"name": "fuel-wallet",
"version": "0.0.1",
"private": true,
"description": "Fuel Wallet",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"homepage": "https://github.com/FuelLabs/fuels-wallet#readme",
"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:libs": "turbo run build --filter=@fuels-wallet/* --no-cache",
"build:preview": "./scripts/build-preview.sh",
"build": "pnpm build:libs && turbo run build",
"build:crx": "pnpm build:libs && turbo run build:crx",
"build:all": "run-s build build:crx",
"deps:update": "updates -gu && pnpm -r exec updates -gu",
"dev": "turbo run dev --parallel",
"dev:crx": "turbo run dev:crx --parallel",
"lint": "run-s lint:check prettier:check",
"lint:check": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "pnpm lint:check --fix",
"node:dev": "fuelhat node",
"node:test": "fuelhat node start --test",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write .",
"storybook": "pnpm -r --filter=app storybook",
"test": "pnpm run --filter=app test",
"test:ci": "pnpm test -- --ci --testLocationInResults --json --coverage",
"test:clear": "pnpm -r exec jest --clearCache",
"test:coverage": "pnpm run --filter=app test --coverage",
"test:e2e": "playwright test --config=packages/app/playwright.config.ts",
"ts:check": "pnpm -r ts:check",
"prepare": "husky install"
},
"dependencies": {
"@fuel-ui/config": "^0.8.0",
"fuelhat": "workspace:*"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@jest/types": "29.2.1",
"@playwright/test": "^1.27.1",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.2",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@xstate/cli": "^0.3.3",
"dotenv": "^16.0.3",
"eslint": "^8.25.0",
"fs-extra": "^10.1.0",
"http-server": "^14.1.1",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "29.2.1",
"jest-environment-jsdom": "29.2.1",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"playwright": "^1.27.1",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"turbo": "^1.5.6",
"typescript": "^4.8.4",
"updates": "^13.1.9"
},
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"react",
"react-dom"
],
"ignoreMissing": [
"react",
"react-dom"
]
},
"overrides": {
"trim@<0.0.3": ">=0.0.3",
"trim-newlines@<3.0.1": ">=3.0.1",
"glob-parent@<5.1.2": ">=5.1.2"
}
}
}