forked from FuelLabs/fuels-ts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.57 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
{
"name": "fuels-ts",
"version": "0.0.1",
"description": "Fuel TS SDK",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"main": "index.js",
"private": true,
"engines": {
"node": ">=14.18.0",
"npm": ">=8.0.0"
},
"workspaces": [
"./packages/*"
],
"scripts": {
"postinstall": "npm run build",
"build": "tsc --build && npm -ws run build --if-present",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --collectCoverage",
"lint": "eslint . --ext .ts && prettier --check packages",
"eslint-fix": "eslint . --ext .ts --fix",
"prettier-format": "prettier --write packages",
"run-services": "docker compose up",
"fix-ts-references": "npx @monorepo-utils/workspaces-to-typescript-project-references && prettier --write packages/*/tsconfig.json",
"docs": "typedoc"
},
"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": {
"@qiwi/multi-semantic-release": "^3.17.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semrel-extra/npm": "^1.2.0",
"@typechain/ethers-v5": "^6.0.5",
"@types/jest": "^27.0.3",
"@types/node": "^14",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"conventional-changelog-conventionalcommits": "^4.6.3",
"dotenv": "^9.0.2",
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsdoc": "^37.2.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-tsdoc": "^0.2.14",
"jest": "^27.4.3",
"lerna": "^4.0.0",
"markdownlint": "^0.23.1",
"markdownlint-cli": "^0.27.1",
"open": "^8.4.0",
"prettier": "^2.5.1",
"ts-generator": "^0.1.1",
"ts-jest": "^27.1.1",
"ts-node": "^10.4.0",
"typechain": "^4.0.3",
"typedoc": "^0.22.11",
"typedoc-just-the-docs-theme": "^0.0.1",
"typedoc-monorepo-link-types": "^0.0.2",
"typedoc-plugin-markdown": "^3.11.12",
"typedoc-plugin-sourcefile-url": "^1.0.6",
"typescript": "^4.5.2"
}
}