-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 748 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 748 Bytes
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
{
"name": "zalando-tech-radar",
"version": "2024.1.0",
"description": "Visualizing our technology choices",
"homepage": "https://github.com/zalando/tech-radar#readme",
"repository": "https://github.com/zalando/tech-radar.git",
"license": "MIT",
"private": true,
"directories": {
"doc": "docs"
},
"devDependencies": {
"browser-sync": "^3.0.2",
"eslint": "^8.52.0",
"eslint-plugin-html": "^7.1.0",
"socket.io": "^4.7.2"
},
"scripts": {
"start": "browser-sync docs -w",
"lint": "npm run lint:js && npm run lint:html",
"lint:js": "eslint docs/*.js",
"lint:html": "eslint docs/*.html"
},
"dependencies": {
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"express": "^4.21.2"
}
}