-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
93 lines (93 loc) · 2.84 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
{
"name": "fuels-npm-packs",
"version": "0.0.1",
"description": "Fuel's common library packages",
"private": true,
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"homepage": "https://github.com/FuelLabs/fuels-npm-packs",
"repository": {
"type": "git",
"url": "git+https://github.com/FuelLabs/fuels-npm-packs.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/FuelLabs/fuels-npm-packs/issues"
},
"workspaces": [
"./packages/*"
],
"scripts": {
"build": "turbo run build",
"build:watch": "pnpm -r --parallel build --watch",
"changeset": "changeset",
"changeset:check": "changeset status --since=origin/main",
"changeset:next": "tsx ./scripts/changeset-next",
"changeset:release": "changeset publish --no-git-tag",
"changeset:version": "changeset version",
"deps:update": "updates -gu && pnpm -r exec updates -gu",
"lint": "run-s lint:check prettier:check",
"lint:check": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "pnpm lint:check --fix",
"prepare": "husky install",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write .",
"test": "turbo run test --parallel",
"test:ci": "jest --ci --testLocationInResults --json --coverage --config jest.config.ts",
"test:clear": "pnpm -r exec jest --clearCache",
"test:coverage": "turbo run test --parallel -- --coverage",
"ts:check": "turbo run ts:check",
"xstate:typegen": "pnpm -r xstate:typegen",
"packages:version": "node ./scripts/version.js"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.9",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@xstate/cli": "^0.5.2",
"compare-versions": "6.1.0",
"dotenv": "^16.3.1",
"eslint": "^8.48.0",
"husky": "^8.0.3",
"jest": "29.6.4",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"tsx": "^4.7.3",
"turbo": "^1.10.13",
"typescript": "5.4.2",
"updates": "^14.5.0"
},
"dependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "2.27.7",
"@changesets/get-github-info": "^0.5.2",
"@fuels/changeset": "workspace:*",
"@fuels/eslint-plugin": "workspace:~"
},
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"react",
"react-dom"
],
"ignoreMissing": [
"react",
"react-dom"
]
},
"overrides": {
"semver@<7.5.2": ">=7.5.2",
"word-wrap": "npm:@aashutoshrathi/word-wrap",
"@babel/traverse@<7.23.2": ">=7.23.2",
"@adobe/css-tools@<4.3.2": ">=4.3.2",
"braces@<3.0.3": ">=3.0.3",
"ws@>=8.0.0 <8.17.1": ">=8.17.1",
"micromatch@<4.0.8": ">=4.0.8",
"rollup": ">=3.29.5"
}
}
}