-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.07 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
{
"name": "@podium/dev-tool",
"version": "5.0.15",
"type": "module",
"description": "Development tool to improve the experience of working on Podium podlets",
"license": "MIT",
"keywords": [
"micro services",
"micro frontend",
"components",
"podium",
"proxy"
],
"repository": {
"type": "git",
"url": "git@github.com:podium-lib/dev-tool.git"
},
"bugs": {
"url": "https://github.com/podium-lib/issues"
},
"homepage": "https://podium-lib.io/",
"main": "lib/index.js",
"types": "types/index.d.ts",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "node --test",
"types": "run-s types:tsc types:test",
"types:tsc": "tsc",
"types:test": "tsc --project tsconfig.test.json"
},
"author": "Richard Walker <richard.walker@schibsted.com>",
"devDependencies": {
"@types/node": "22.10.1",
"@podium/podlet": "5.1.17",
"@podium/proxy": "5.0.28",
"supertest": "6.3.4"
},
"dependencies": {
"@podium/context": "^5.0.0",
"@podium/utils": "^5.0.0",
"abslog": "^2.4.4",
"body": "^5.1.0",
"cors": "^2.8.5",
"express": "^4.17.1"
}
}