-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 2.02 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
{
"name": "dot-github",
"version": "0.1.0",
"license": "MIT",
"engines": {
"pnpm": "9"
},
"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 && pnpm version --patch"
},
"private": true,
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.5",
"@nx/devkit": "^17.3.2",
"@nx/esbuild": "^17.3.2",
"@nx/eslint": "^17.3.2",
"@nx/eslint-plugin": "^17.3.2",
"@nx/js": "17.3.2",
"@nx/plugin": "^17.3.2",
"@swc-node/register": "~1.10.0",
"@swc/cli": "~0.4.0",
"@swc/core": "~1.7.0",
"@swc/helpers": "~0.5.11",
"@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": "^9.1.0",
"jsdom": "~24.1.0",
"lefthook": "^1.6.15",
"nx": "^17.3.2",
"prettier": "^3.3.2",
"rimraf": "^6.0.0",
"ts-node": "10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.4.5",
"update-ts-references": "^3.3.0",
"vitest": "^2.0.0"
},
"repository": "https://github.com/smartcontractkit/.github"
}