forked from FuelLabs/fuels-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.39 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
{
"name": "fuels-ts",
"version": "0.0.0",
"description": "Fuel TS SDK",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"private": true,
"engines": {
"node": "^18.17.1",
"pnpm": "^8.9.0"
},
"packageManager": "[email protected]",
"scripts": {
"dan": "tsx ./scripts/release-unpublish.ts",
"dev": "nodemon --config nodemon.config.json -x 'pnpm build:packages'",
"build": "turbo run build",
"build:packages": "turbo run build --filter=!docs",
"ci:test": "./scripts/ci-test.sh",
"pretest": "turbo run pretest",
"test": "jest --no-cache --runInBand --coverage",
"test:e2e": "jest --no-cache --runInBand packages/fuel-gauge/src/e2e-script.test.ts",
"test:watch": "jest --no-cache --watchAll",
"lint": "run-s lint:check prettier:check",
"lint:check": "eslint . --ext .ts",
"lint:fix": "pnpm lint:check --fix",
"lint:md-links": "tsx ./scripts/lint-md-links",
"lint:package-jsons": "tsx ./scripts/lint-package-jsons",
"prettier:check": "prettier --check packages",
"prettier:format": "prettier --write packages",
"changeset:publish": "changeset publish --no-git-tag",
"changeset:next": "tsx ./scripts/changeset-next",
"changeset:version-with-docs": "tsx ./scripts/changeset-version-with-docs",
"forc:update": "tsx ./scripts/forc-update",
"forc:check": "./scripts/forc-check.sh",
"forc:format": "./scripts/forc-format.sh",
"forc:verify": "tsx ./scripts/verify-forc-version",
"node:run": "./scripts/run-node.sh",
"node:clean": "rimraf .fuel-core/db"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FuelLabs/fuels-ts.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/FuelLabs/fuels-ts/issues"
},
"homepage": "https://github.com/FuelLabs/fuels-ts#readme",
"devDependencies": {
"@changesets/cli": "^2.25.0",
"@changesets/get-github-info": "^0.5.2",
"@fuel-ts/forc": "workspace:*",
"@fuel-ts/fuel-core": "workspace:*",
"@fuel-ts/versions": "workspace:^",
"@internal/tsup": "workspace:*",
"@jest/types": "^29.5.0",
"@types/jest": "^29.5.0",
"@types/node": "18.15.3",
"@types/node-fetch": "^2.6.2",
"@types/web": "^0.0.65",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"compare-versions": "^6.1.0",
"conventional-changelog-angular": "^5.0.13",
"dotenv": "^9.0.2",
"eslint": "^8.52.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tsdoc": "^0.2.17",
"ethers": "^6.7.1",
"glob": "^10.2.6",
"jest": "^29.7.0",
"jest-text-transformer": "^1.0.4",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"open": "^8.4.0",
"prettier": "^3.0.3",
"rimraf": "^3.0.2",
"textlint": "^13.3.2",
"textlint-rule-no-dead-link": "^5.1.2",
"ts-generator": "^0.1.1",
"ts-jest": "^29.1.1",
"tsup": "^6.7.0",
"tsx": "^3.12.7",
"turbo": "^1.8.8",
"typescript": "~5.2.2"
},
"pnpm": {
"overrides": {
"cross-fetch": "4.0.0"
}
}
}