-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.79 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
{
"name": "esyfo-cli",
"module": "src/index.ts",
"type": "module",
"scripts": {
"tsc": "bun x tsc",
"lint": "bun x eslint src/**/*.ts",
"lint-staged": "lint-staged",
"build": "bun x rimraf esyfo-cli/bin/ecli && bun run build-cli && bun run sanity-check",
"build-cli": "bun run src/build.ts",
"sanity-check": "./esyfo-cli/bin/ecli --help",
"prepare": "husky install",
"postinstall": "bun x prettier package.json --write && echo \"Prettiered package.json\""
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/inquirer-autocomplete-prompt": "^3.0.3",
"bun-types": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@navikt/eslint-config-teamsykmelding": "^5.0.0",
"@octokit/rest": "^20.0.2",
"@types/gradient-string": "^1.1.5",
"@types/prompts": "^2.4.9",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"chalk": "^5.3.0",
"date-fns": "^3.2.0",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"gradient-string": "^2.0.2",
"husky": "^8.0.3",
"inquirer": "^9.2.12",
"inquirer-autocomplete-prompt": "^3.0.1",
"lint-staged": "^15.2.0",
"octokit": "^3.1.2",
"prettier": "^3.1.1",
"prompts": "^2.4.2",
"remeda": "^1.33.0",
"simple-git": "^3.22.0",
"yargs": "^17.7.2"
},
"prettier": "@navikt/eslint-config-teamsykmelding/prettier",
"eslintConfig": {
"extends": "@navikt/eslint-config-teamsykmelding",
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-function-return-type": "off"
}
}
}