-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.26 KB
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
{
"name": "@scandinavianairlines/react-router-azure-functions",
"version": "3.0.1",
"description": "A package that adapts requests between Azure Functions and React Router",
"keywords": [
"adapter",
"azure",
"functions",
"react-router",
"serverless"
],
"repository": {
"type": "git",
"url": "git+https://github.com/scandinavianairlines/react-router-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/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": {
"react": "^18.x || ^19.x",
"react-router": "^7.x || ^8.x"
},
"devDependencies": {
"@azure/functions": "^4.16.1",
"@commitlint/cli": "^21.1.0",
"@commitlint/config-conventional": "^21.1.0",
"@commitlint/cz-commitlint": "^21.1.0",
"@eslint/eslintrc": "^3.3.5",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@tsconfig/node-lts": "^24.0.0",
"@types/react": "^19.2.17",
"@vitest/coverage-v8": "^4.1.9",
"commitizen": "^4.3.2",
"eslint": "^9.39.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-disable": "^2.0.3",
"eslint-plugin-import-x": "^4.17.0",
"eslint-plugin-jsdoc": "^63.0.7",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-sort-destructure-keys": "^3.0.0",
"eslint-plugin-unicorn": "^69.0.0",
"eslint-plugin-vitest": "^0.5.4",
"husky": "^9.1.7",
"inquirer": "^14.0.2",
"lint-staged": "^17.0.8",
"neostandard": "^0.13.0",
"pinst": "^3.0.0",
"prettier": "^3.8.4",
"ramda": "^0.32.0",
"react": "^19.2.7",
"react-router": "^8.0.1",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
},
"engines": {
"node": ">= 22"
},
"packageManager": "yarn@4.17.0"
}