-
Notifications
You must be signed in to change notification settings - Fork 123
/
package.json
48 lines (48 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
{
"name": "aoe_technology_radar",
"version": "4.4.0",
"bin": {
"techradar": "./bin/techradar.js"
},
"scripts": {
"dev": "next dev",
"build:icons": "npx @svgr/cli --typescript --no-dimensions --no-prettier --out-dir src/components/Icons -- src/icons",
"build:data": "tsx scripts/buildData.ts",
"build": "next build",
"start": "next start",
"lint": "next lint",
"fix": "prettier . --write",
"prepare": "husky",
"postinstall": "npm run build:icons"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@radix-ui/react-dialog": "^1.1.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"clsx": "^2.1.1",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.4",
"fuse.js": "^7.0.0",
"gray-matter": "^4.0.3",
"highlight.js": "^11.9.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"marked": "^13.0.1",
"marked-highlight": "^2.1.3",
"next": "14.2.4",
"postcss-nested": "^6.0.1",
"postcss-preset-env": "^9.5.14",
"prettier": "^3.3.2",
"react": "^18",
"react-dom": "^18",
"tsx": "^4.15.8",
"typescript": "^5"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}