-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.92 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": "@fingerprintjs/dx-team-toolkit",
"version": "1.0.0",
"private": true,
"description": "DX Team shared code and configurations like GitHub Actions reusable workflows.",
"scripts": {
"prepare": "husky install",
"build": "pnpm run -r build",
"build:actions": "bash ./scripts/build-actions.sh",
"test": "jest",
"test:coverage": "jest --coverage",
"docs": "mkdir docs && cp README.md ./docs/README.md",
"lint:fix": "pnpm run lint --fix",
"lint": "eslint --ext .ts,.js --ignore-path .gitignore --max-warnings 0 . .github/actions"
},
"prettier": "@fingerprintjs/prettier-config-dx-team",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@changesets/read": "^0.6.1",
"@changesets/types": "^6.0.0",
"@commitlint/cli": "^17.8.1",
"@fingerprintjs/changesets-changelog-format": "^0.2.0",
"@fingerprintjs/commit-lint-dx-team": "workspace:local",
"@fingerprintjs/conventional-changelog-dx-team": "workspace:local",
"@fingerprintjs/eslint-config-dx-team": "workspace:local",
"@fingerprintjs/prettier-config-dx-team": "workspace:local",
"@fingerprintjs/tsconfig-dx-team": "workspace:local",
"@octokit/rest": "^21.0.1",
"@types/jest": "^29.5.12",
"@types/unzipper": "^0.10.10",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"glob": "^11.0.0",
"human-id": "^4.1.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.2",
"tsup": "^8.2.4",
"typescript": "^5.4.2",
"unzipper": "^0.12.3"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@types/js-yaml": "^4.0.9",
"@types/semver": "^7.5.8",
"cockatiel": "^3.2.1",
"js-yaml": "^4.1.0",
"semver": "^7.6.3"
}
}