This repository has been archived by the owner on Feb 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
107 lines (107 loc) · 3.21 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
{
"name": "fuel-portal-project",
"version": "0.0.1",
"private": true,
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"engines": {
"node": ">=18.14.1",
"pnpm": ">=7"
},
"homepage": "https://github.com/FuelLabs/fuels-portal",
"repository": {
"type": "git",
"url": "git+https://github.com/FuelLabs/fuels-portal.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/FuelLabs/fuels-portal/issues"
},
"workspaces": [
"./packages/*"
],
"scripts": {
"dev": "./scripts/dev.sh",
"dev:notification": "pnpm --filter=notification-service dev:notification",
"build": "turbo run build",
"build:preview": "turbo run build:preview",
"lint": "run-s lint:check prettier:check",
"lint:check": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "pnpm lint:check --fix",
"node:start": "make -C ./docker start",
"node:stop": "make -C ./docker stop",
"node:clean": "make -C ./docker clean",
"node:logs": "make -C ./docker logs",
"node:reset": "run-s node:stop node:clean node:start",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write .",
"test:all": "run-p test test:e2e",
"test": "turbo run test --parallel",
"test:e2e": "playwright test --config=packages/app/playwright.config.ts",
"ts:check": "turbo run ts:check",
"prepare": "husky install",
"storybook": "pnpm --filter=@fuels-portal/bridge storybook",
"xstate:typegen": "pnpm -r xstate:typegen"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@fuels/eslint-plugin": "^0.0.8",
"@fuels/jest": "^0.0.8",
"@fuels/prettier-config": "^0.0.8",
"@jest/types": "29.4.2",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/hardhat-upgrades": "^2.1.0",
"@playwright/test": "^1.39.0",
"@types/jest": "^29.4.0",
"@types/node": "18.15.3",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@xstate/cli": "^0.5.1",
"dotenv": "^16.0.3",
"eslint": "^8.33.0",
"hardhat-typechain": "^0.3.5",
"husky": "^8.0.3",
"jest": "29.4.2",
"jest-environment-jsdom": "29.4.2",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^13.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"retus": "^1.1.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"turbo": "^1.8.3",
"typescript": "^4.9.5"
},
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"react",
"react-dom"
],
"ignoreMissing": [
"react",
"react-dom"
]
},
"overrides": {
"@adobe/css-tools@<4.3.1": ">=4.3.1",
"yaml@>=2.0.0-5 <2.2.2": ">=2.2.2",
"vite@>=4.1.0 <4.1.5": ">=4.1.5",
"semver@<7.5.2": ">=7.5.2",
"word-wrap": "npm:@aashutoshrathi/word-wrap",
"pnpm@>=8.0.0 <8.6.8": ">=8.6.8",
"graphql": "16.2.0",
"undici@<5.8.0": ">=5.8.0",
"undici@>=4.8.2 <=5.5.0": ">=5.5.1",
"undici@<=5.8.1": ">=5.8.2",
"undici@<5.19.1": ">=5.19.1",
"undici@>=2.0.0 <5.19.1": ">=5.19.1",
"@babel/traverse@<7.23.2": ">=7.23.2",
"undici@<5.26.2": ">=5.26.2",
"axios@>=0.8.1 <1.6.0": ">=1.6.0"
}
},
"dependencies": {
"@fuels/ts-config": "^0.0.8"
}
}