-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.27 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
{
"name": "todoist-action",
"version": "1.2.0",
"private": true,
"description": "Synchronizes Github issues with Todoist",
"keywords": [
"actions",
"node",
"todoist",
"todo",
"github-actions",
"todoist-sync"
],
"repository": "github:simenandre/todoist-action",
"license": "Apache-2.0",
"author": "Simen A. W. Olsen <so@bjerk.io>",
"main": "lib/main.js",
"scripts": {
"dev": "ts-node src/main.ts",
"build": "ncc build --source-map src/main.ts",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"generate": "graphql-codegen --config codegen.yml",
"lint": "eslint src/**/*.ts",
"test": "jest --passWithNoTests",
"all": "yarn run build && yarn run format && yarn run lint && yarn run test",
"prepare": "husky install .github/husky"
},
"lint-staged": {
"src/**/*.{yaml,yml}": "prettier --write",
"src/**/*.{js,ts}": "eslint --cache --fix",
"{.eslintrc,.releaserc.json,.tsconfig.json}": "prettier --write",
"*.md": "prettier --write"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@adobe/node-fetch-retry": "^1.1.0",
"deep-equal": "^2.0.5",
"graphql": "^15.4.0",
"graphql-request": "^3.4.0",
"husky": "^6.0.0",
"runtypes": "^6.2.1",
"todoist": "^0.5.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.21.4",
"@graphql-codegen/fragment-matcher": "^2.0.1",
"@graphql-codegen/typescript": "^2.3.1",
"@graphql-codegen/typescript-graphql-request": "^3.1.1",
"@graphql-codegen/typescript-operations": "^1.17.15",
"@types/adobe__node-fetch-retry": "^1.0.0",
"@types/deep-equal": "^1.0.1",
"@types/dotenv": "^8.2.0",
"@types/faker": "^5.5.3",
"@types/jest": "~26.0.22",
"@types/node": "~14",
"@typescript-eslint/eslint-plugin": "~4.22.0",
"@typescript-eslint/parser": "~4.33.0",
"@vercel/ncc": "^0.36.1",
"dotenv": "^8.2.0",
"eslint": "~7.25.0",
"eslint-config-prettier": "~8.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "~25.2.3",
"faker": "^5.5.3",
"husky": "^6.0.0",
"jest": "~26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rimraf": "~3.0.2",
"ts-jest": "~26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.0.5"
}
}