-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.92 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@chrishrb/techradar",
"description": "Create your own technology radar, with flexibility to customize the radar, the quadrants and the rings.",
"version": "0.1.5",
"private": false,
"prepublishOnly": "pnpm run build",
"type": "module",
"scripts": {
"ci": "pnpm install --frozen-lockfile",
"dev": "vite",
"build": "tsc --p ./tsconfig-build.json && vite build",
"build-page": "vite build --config vite.config.page.ts",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrishrb/techradar.git"
},
"keywords": [
"techradar",
"technology-radar"
],
"author": "Christoph Herb <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrishrb/techradar/issues"
},
"homepage": "https://github.com/chrishrb/techradar#readme",
"dependencies": {
"d3": "7.9.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"seedrandom": "3.0.5"
},
"devDependencies": {
"@types/d3": "7.4.3",
"@types/node": "20.11.24",
"@types/react": "18.2.67",
"@types/react-dom": "18.2.25",
"@types/seedrandom": "3.0.8",
"@typescript-eslint/eslint-plugin": "7.10.0",
"@typescript-eslint/parser": "7.3.0",
"@vitejs/plugin-react": "4.2.1",
"eslint": "8.57.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-refresh": "0.4.5",
"gh-pages": "^6.1.1",
"glob": "10.3.10",
"happy-dom": "^14.11.0",
"jest-environment-jsdom": "29.7.0",
"ts-node": "10.9.2",
"typescript": "5.4.2",
"vite": "5.2.11",
"vite-plugin-dts": "3.7.3",
"vitest": "^1.3.1"
},
"files": [
"dist"
],
"main": "dist/main.js",
"types": "dist/main.d.ts",
"packageManager": "[email protected]",
"engines": {
"node": ">=21",
"pnpm": ">=8"
}
}