-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.16 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.16 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
{
"name": "dot-github",
"version": "0.1.0",
"license": "MIT",
"engines": {
"pnpm": "10"
},
"scripts": {
"prettier:check": "prettier --check \"**/*.{json,md,js,ts,yml,yaml}\" --ignore-path=.prettierignore",
"prettier:write": "prettier --write \"**/*.{json,md,js,ts,yml,yaml}\" --ignore-path=.prettierignore",
"hook:check": "prettier --check --ignore-path=.prettierignore",
"hook:fix": "prettier --write --ignore-path=.prettierignore",
"lint": "pnpm nx run-many --target=lint --verbose",
"lint:affected": "pnpm nx affected --target=lint --verbose",
"build": "pnpm nx run-many --target=build --verbose",
"build:affected": "pnpm nx affected --target=build --verbose",
"test": "pnpm nx run-many --target=test --verbose",
"test:affected": "pnpm nx affected --target=test --verbose",
"package": "pnpm nx run-many --target=package --verbose",
"package:affected": "pnpm nx affected --target=package --verbose",
"ci:changeset:publish": "pnpm changeset publish",
"ci:changeset:version": "pnpm changeset version",
"clean:deps": "rm -rf node_modules && pnpm -r exec rm -rf node_modules"
},
"private": true,
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.5",
"@nx/devkit": "22.5.3",
"@nx/esbuild": "22.5.3",
"@nx/eslint": "22.5.3",
"@nx/eslint-plugin": "22.5.3",
"@nx/js": "22.5.3",
"@nx/plugin": "22.5.3",
"@swc-node/register": "1.11.1",
"@swc/cli": "0.7.10",
"@swc/core": "1.15.8",
"@swc/helpers": "0.5.19",
"@types/node": "20.14.13",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"esbuild": "^0.23.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "10.1.8",
"jsdom": "~24.1.0",
"lefthook": "^1.6.15",
"nx": "22.5.3",
"prettier": "^3.3.2",
"rimraf": "^6.0.0",
"ts-node": "10.9.2",
"tslib": "^2.6.3",
"typescript": "5.9.3",
"update-ts-references": "^3.3.0",
"vitest": "^4.0.18"
},
"repository": "https://github.com/smartcontractkit/.github",
"pnpm": {
"overrides": {
"form-data": "4.0.4",
"minimatch": "^10.2.4"
}
}
}