-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 2.48 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
{
"name": "integration-templates",
"version": "1.0.0",
"type": "module",
"description": "",
"scripts": {
"lint": "eslint . --ext .ts",
"fix": "eslint . --ext .ts --fix",
"move:integrations": "bash scripts/move-all-to-nango-integration-directories.bash $npm_config_integration",
"copy:models-file": "bash scripts/compile-all-templates.bash $npm_config_integration",
"undo:move:integrations": "bash scripts/undo-move-to-nango-directories.bash",
"lint-moved-integrations": "npm run move:integrations && npm run lint && npm run undo:move:integrations",
"resolve:aliases": "bash scripts/resolve-aliases.bash $npm_config_integration",
"dryrun": "bash scripts/run-integration-template.bash --dryrun",
"generate:zod": "bash scripts/generate-integration-template-zod.bash $npm_config_integration && npm run undo:move:integrations",
"compile": "bash scripts/compile-all-templates.bash $npm_config_integration && npm run undo:move:integrations",
"prettier-format": "prettier --config .prettierrc \"./**/*.{ts,tsx}\" --write",
"prettier-watch": "onchange './**/*.{ts,tsx}' -- prettier --write {{changed}}",
"prepare": "husky install",
"generate:tests": "bash scripts/generate-integration-template-tests.bash $npm_config_integration && npm run undo:move:integrations",
"test": "vitest",
"generate:readmes": "tsx scripts/generate-readmes.ts"
},
"devDependencies": {
"@nangohq/eslint-config": "1.0.6",
"@nangohq/eslint-plugin-custom-integrations-linting": "0.0.4",
"@nangohq/shared": "^0.48.1",
"@nangohq/types": "^0.48.1",
"@types/ejs": "^3.1.2",
"@types/js-yaml": "4.0.9",
"@types/node": "20.12.2",
"ejs": "^3.1.10",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"husky": "8.0.3",
"js-yaml": "4.1.0",
"lint-staged": "15.2.9",
"lodash-es": "^4.17.21",
"nango": "^0.48.1",
"onchange": "7.1.0",
"parse-link-header": "^2.0.0",
"ts-to-zod": "^3.9.1",
"soap": "1.1.2",
"tsx": "^4.19.0",
"typescript": "5.7.2",
"vitest": "^2.0.5",
"zod": "3.23.8"
},
"lint-staged": {
"*.{html,css,json,yaml,ts}": [
"prettier --write"
]
},
"engines": {
"node": ">=18.0.0 || >=20.0.0"
}
}