-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.02 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.02 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
{
"name": "dyne-tech-radar",
"version": "2018.5.0",
"description": "Visualizing our technology choices",
"homepage": "https://github.com/dyne/tech-radar#readme",
"repository": "https://github.com/dyne/tech-radar.git",
"license": "MIT",
"directories": {
"doc": "docs"
},
"devDependencies": {
"browser-sync": "^2.29.3",
"eslint": "^8.42.0",
"htmllint-cli": "^0.0.7",
"socket.io": "^4.6.2"
},
"resolutions": {
"yargs-parser": "21.1.1"
},
"scripts": {
"sync:data": "node scripts/generate-radar-data-module.mjs",
"dev": "npm run sync:data && vite",
"build": "npm run sync:data && vite build",
"preview": "vite preview",
"start": "npm run dev",
"test": "node test/run-tests.mjs",
"lint": "npm run lint:js && npm run lint:html",
"lint:js": "eslint scripts/**/*.mjs src/**/*.{js,mjs} test/**/*.mjs vite.config.js docs/*.js",
"lint:html": "htmllint index.html docs/*.html"
},
"dependencies": {
"d3": "^4.13.0",
"vite": "^7.3.1",
"yaml": "^2.8.2"
}
}