-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.13 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.13 KB
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
120
121
122
123
124
125
126
127
128
129
130
{
"name": "fuel-explorer-project",
"version": "0.0.0",
"private": true,
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"license": "Apache-2.0",
"engines": {
"node": "20.11.0",
"pnpm": "9.x"
},
"homepage": "https://github.com/FuelLabs/fuel-explorer",
"repository": {
"type": "git",
"url": "git+https://github.com/FuelLabs/fuel-explorer.git"
},
"bugs": {
"url": "https://github.com/FuelLabs/fuel-explorer/issues"
},
"workspaces": [
"./packages/*",
"./contracts/*",
"docker/erc20-deployer/deployer"
],
"scripts": {
"build:prod": "pnpm turbo:run build:prod --filter=app-explorer",
"build:lib": "pnpm turbo:run build:lib",
"deps:update": "updates -gu && pnpm -r exec updates -gu",
"dev": "./scripts/dev.sh",
"dev:explorer:prod": "pnpm --filter=app-explorer start",
"dev:explorer": "pnpm --filter=app-explorer run dev",
"dev:portal": "pnpm --filter=app-portal dev",
"dev:graphql": "pnpm --filter=graphql dev:graphql",
"lint": "biome check --apply-unsafe .",
"format": "biome format --write .",
"node:clean": "make -C ./docker clean",
"node:logs": "make -C ./docker logs",
"node:reset": "make -C ./docker reset",
"node:start": "make -C ./docker start",
"node:stop": "make -C ./docker stop",
"node:restart": "make -C ./docker restart",
"prepare": "husky install",
"run:backend": "./scripts/run-backend.sh",
"start": "pnpm turbo:run start",
"setup:backend": "./scripts/setup-backend.sh",
"test": "pnpm turbo:run test",
"test:all": "run-p test test:e2e",
"test:e2e": "playwright test --config=packages/e2e-tests/playwright.config.ts",
"test:e2e-soft": "playwright test --config=packages/e2e-tests/playwright-soft.config.ts",
"test:ci": "pnpm turbo:run test -- --ci --testLocationInResults --json --coverage",
"test:clear": "pnpm turbo:run test -- --clearCache",
"test:coverage": " pnpm turbo:run test -- --coverage",
"test:watch": "pnpm turbo:run test -- --watch",
"ts:check": "pnpm turbo:run ts:check",
"turbo:run": "./scripts/turbo.sh"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@biomejs/biome": "1.9.4",
"@fuels/jest": "0.20.0",
"@fuels/ts-config": "0.26.0",
"@fuels/tsup-config": "0.26.0",
"@jest/types": "29.6.3",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@openzeppelin/hardhat-upgrades": "^3.0.3",
"@playwright/test": "1.48.2",
"@swc/core": "1.4.1",
"@swc/jest": "0.2.36",
"@types/jest": "29.5.12",
"@types/lodash": "^4.17.12",
"@xstate/cli": "^0.5.17",
"connectkit": "1.8.2",
"dotenv": "^16.4.4",
"get-tsconfig": "4.7.2",
"graphql": "16.10.0",
"hardhat-typechain": "^0.3.5",
"husky": "9.1.5",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-transform-stub": "^2.0.0",
"lint-staged": "15.2.2",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.1.2",
"ts-node": "10.9.2",
"tsup": "8.0.2",
"tsx": "4.7.1",
"turbo": "2.3.3",
"typescript": "5.4.5",
"updates": "^15.1.2",
"viem": "2.23.2",
"vitest": "1.6.1",
"wagmi": "2.12.7",
"ws": "^8.17.1"
},
"pnpm": {
"peerDependencyRules": {
"allowAny": ["react", "react-dom"],
"ignoreMissing": ["react", "react-dom"]
},
"overrides": {
"axios@>=1.0.0 <1.8.2": ">=1.8.2",
"ws@<8.17.1": ">=8.17.1",
"form-data@>=3.0.0 <3.0.4": ">=3.0.4",
"form-data@>=4.0.0 <4.0.4": ">=4.0.4",
"esbuild@<=0.24.2": ">=0.25.0",
"cookie@<0.7.0": ">=0.7.0",
"fast-loops@<1.1.4": ">=1.1.4",
"elliptic@<6.6.1": ">=6.6.1",
"basic-ftp@<5.2.0": ">=5.2.0",
"viem": "2.23.2"
}
},
"dependencies": {
"@fuel-ts/account": "0.100.0",
"@fuel-ts/math": "0.100.0",
"@fuels/connectors": "0.45.0",
"@fuels/react": "0.44.1",
"@fuels/react-xstore": "0.23.0",
"fuels": "0.103.0",
"lodash": "^4.17.21",
"react-data-table-component": "7.6.2",
"react-paginate": "8.2.0",
"recharts": "2.12.7"
},
"peerDependencies": {
"@fuels/connectors": "0.45.0",
"@fuels/react": "0.44.1",
"fuels": ">=0.102.0"
},
"packageManager": "pnpm@9.10.0"
}