-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
96 lines (96 loc) · 2.62 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
92
93
94
95
96
{
"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.6.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/cz-commitlint": "^19.6.1",
"@eslint/eslintrc": "^3.2.0",
"@remix-run/node": "^2.15.2",
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"@tsconfig/node-lts": "^20.1.3",
"@vitest/coverage-v8": "^2.1.8",
"commitizen": "^4.3.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-disable": "^2.0.3",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-unicorn": "^56.0.1",
"eslint-plugin-vitest": "^0.5.4",
"husky": "^9.1.7",
"inquirer": "^9.3.7",
"lint-staged": "^15.3.0",
"neostandard": "^0.12.0",
"pinst": "^3.0.0",
"prettier": "^3.4.2",
"ramda": "^0.30.1",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">= 18"
},
"resolutions": {
"@eslint/plugin-kit": ">=0.2.3",
"axios": ">=0.28.0",
"cookie": ">=0.7.0",
"cross-spawn": ">=7.0.5",
"nanoid": ">=3.3.8",
"path-to-regexp": ">=0.1.12",
"tar": ">=6.2.1",
"undici": ">=5.28.4"
},
"packageManager": "yarn@4.4.1"
}