-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.96 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.96 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
64
65
66
67
68
69
70
71
72
73
{
"name": "@kingstinct/utils",
"version": "0.7.27",
"main": "index.js",
"author": "Robert Herber",
"license": "MIT",
"scripts": {
"build": "rimraf node fastify && tsc -p ./tsconfig.build.json",
"test": "concurrently \"pnpm test-only\" \"pnpm lint\" \"npx tsc --noEmit\"",
"test-only": "jest",
"lint-only": "eslint .",
"typecheck": "npx tsc --noEmit",
"lint": "concurrently \"pnpm lint-only\" \"pnpm typecheck\"",
"prepublishOnly": "pnpm build",
"act-lint": "act workflow_dispatch --container-architecture linux/amd64 -W .github/workflows/lint.yml --reuse -e act-workflow-run-configs/lint.json",
"act-typecheck": "act workflow_dispatch --container-architecture linux/amd64 -W .github/workflows/typecheck.yml --reuse -e act-workflow-run-configs/typecheck.json",
"act-test-in-parallel": "act workflow_dispatch --container-architecture linux/amd64 -W .github/workflows/test-in-parallel.yml --reuse -e act-workflow-run-configs/test-in-parallel.json",
"act-build-for-heroku": "act workflow_dispatch --container-architecture linux/amd64 -W .github/workflows/build-for-heroku.yml --reuse -e act-workflow-run-configs/build-for-heroku.json --secret-file .secrets",
"act-deploy-to-heroku": "act workflow_dispatch --container-architecture linux/amd64 -W .github/workflows/deploy-to-heroku.yml --reuse -e act-workflow-run-configs/deploy-to-heroku.json --secret-file .secrets",
"prepare": "husky install",
"release": "git pull --rebase && git push"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"lint-staged": {
"*.ts": "eslint --fix",
"*.js": "eslint --fix",
"*.json": "eslint --fix",
"*.graphql": "eslint --fix",
"*.yml": "eslint --fix"
},
"devDependencies": {
"@graphql-eslint/eslint-plugin": "^3.18.0",
"@types/graphql-fields": "^1.3.5",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.12",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"concurrently": "^7.6.0",
"dataloader": "^2.2.2",
"dayjs": "^1.11.7",
"eslint": "^8.40.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-kingstinct": "^5.1.1",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-comment-length": "^0.9.3",
"eslint-plugin-functional": "^5.0.8",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsonc": "^2.8.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unicorn": "^46.0.1",
"eslint-plugin-yml": "^1.7.0",
"fastify": "^4.17.0",
"fastify-plugin": "^4.5.0",
"graphql": "^16.6.0",
"graphql-fields": "^2.0.3",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.3",
"mongodb": "^5.6.0",
"rimraf": "^4.4.1",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"packageManager": "pnpm@8.6.9",
"dependencies": {
"fast-safe-stringify": "^2.1.1",
"ts-pattern": "^5.0.1"
}
}