forked from FuelLabs/fuels-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.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
{
"name": "fuels-ts",
"version": "0.0.0",
"description": "Fuel TS SDK",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"private": true,
"engines": {
"node": ">= 18.14.1",
"pnpm": ">= 8.1.1"
},
"packageManager": "[email protected]",
"scripts": {
"dev": "nodemon --config nodemon.config.json -x 'turbo run build --filter=!fuel-gauge'",
"build": "turbo run build",
"ci:test": "./scripts/ci-test.sh",
"pretest": "turbo run pretest",
"test": "jest --no-cache --runInBand --coverage",
"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",
"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",
"@ethersproject/bytes": "^5.7.0",
"@fuel-ts/forc": "workspace:*",
"@fuel-ts/fuel-core": "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/shelljs": "^0.8.11",
"@types/web": "^0.0.65",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"conventional-changelog-angular": "^5.0.13",
"dotenv": "^9.0.2",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^37.9.7",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tsdoc": "^0.2.17",
"ethers": "^5.7.2",
"glob": "^10.2.6",
"jest": "^29.5.0",
"jest-text-transformer": "^1.0.4",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"open": "^8.4.0",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"textlint": "^13.3.2",
"textlint-rule-no-dead-link": "^5.1.2",
"ts-generator": "^0.1.1",
"ts-jest": "^29.0.3",
"tsup": "^6.7.0",
"tsx": "^3.12.7",
"turbo": "^1.8.8",
"typescript": "~5.1.6"
}
}