-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
91 lines (91 loc) · 2.47 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@scandinavianairlines/remix-azure-functions",
"version": "1.0.4",
"description": "A package that adapts requests between Azure Functions and Remix.run",
"keywords": [
"adapter",
"azure",
"functions",
"remix-run",
"serverless"
],
"repository": {
"type": "git",
"url": "git+https://github.com/scandinavianairlines/remix-azure-functions.git"
},
"license": "MIT",
"author": "Airline Digitalization <airlinedigitalization@flysas.com>",
"type": "module",
"exports": "./index.js",
"files": [
"CHANGELOG.md",
"index.d.ts",
"index.js",
"README.md",
"src/is-binary-type.js",
"src/server.js",
"types/**/*.d.ts"
],
"types": "./types/index.d.ts",
"sideEffects": false,
"scripts": {
"format": "prettier --write index.js \"src/**/*.js\"",
"lint": "TIMING=1 eslint --fix *.js src/",
"postinstall": "husky",
"postpack": "pinst --enable",
"prepack": "pinst --disable",
"prepublishOnly": "tsc --emitDeclarationOnly",
"test": "vitest --coverage",
"types": "tsc --noEmit --checkJs"
},
"peerDependencies": {
"@azure/functions": ">=4.0.0",
"@remix-run/node": ">=2.0.0"
},
"peerDependenciesMeta": {
"@azure/functions": {
"optional": true
}
},
"devDependencies": {
"@azure/functions": "^4.5.1",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@commitlint/cz-commitlint": "^19.4.0",
"@eslint/eslintrc": "^3.1.0",
"@remix-run/node": "^2.12.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@tsconfig/node-lts": "^20.1.3",
"@vitest/coverage-v8": "^2.1.1",
"commitizen": "^4.3.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-disable": "^2.0.3",
"eslint-plugin-import-x": "^4.3.0",
"eslint-plugin-jsdoc": "^50.2.5",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-vitest": "^0.5.4",
"husky": "^9.1.6",
"inquirer": "^11.0.2",
"lint-staged": "^15.2.10",
"neostandard": "^0.11.6",
"pinst": "^3.0.0",
"prettier": "^3.3.3",
"ramda": "^0.30.1",
"typescript": "^5.5.4",
"vitest": "^2.1.1"
},
"engines": {
"node": ">= 18"
},
"resolutions": {
"axios": ">=0.28.0",
"undici": ">=5.28.4",
"tar": ">=6.2.1"
},
"packageManager": "yarn@4.4.1"
}