-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.32 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
{
"name": "apitoolkit-express",
"version": "3.1.5",
"description": "",
"main": "lib/apitoolkit.js",
"types": "lib/apitoolkit.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --fix",
"test": "jest --config jestconfig.json",
"format": "npx prettier --write .",
"prepare": "pnpm build",
"version": "git add -A src",
"updates": "npx npm-check-updates",
"updates:minor": "npx npm-check-updates --target minor"
},
"files": [
"lib/**/*"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.12",
"@types/node": "^22.5.5",
"@types/sync-fetch": "^0.4.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0"
},
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.52.0",
"apitoolkit-js": "^3.3.3",
"express": "^4.21.0",
"multer": "1.4.5-lts.1",
"sync-fetch": "^0.5.2",
"uuid": "^10.0.0"
}
}