forked from AOEpeople/aoe_technology_radar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.88 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "aoe_technology_radar",
"version": "3.6.0",
"description": "AOE Technology Radar",
"author": "AOE GmbH <[email protected]> (http://www.aoe.com)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/AOEpeople/aoe_technology_radar.git"
},
"bin": {
"aoe_technology_radar-buildRadar": "dist_scripts/scripts/buildRadar.js",
"aoe_technology_radar-createStaticFiles": "dist_scripts/scripts/createStaticFiles.js",
"aoe_technology_radar-generateJson": "dist_scripts/scripts/generateJson.js"
},
"scripts": {
"prepare": "husky install && npm run build:scripts",
"start": "npx cross-env GENERATE_SOURCEMAP=false react-scripts start",
"build": "npx cross-env GENERATE_SOURCEMAP=false react-scripts build",
"build:scripts": "tsc --project tsconfig.scripts.json",
"test": "react-scripts test --watchAll=false",
"ts:check": "tsc --noEmit",
"lint": "npm run ts:check && eslint src/**/*.tsx",
"prettier": "prettier --write '{scripts,src}/**/*.{ts,tsx}'"
},
"dependencies": {
"@apideck/better-ajv-errors": "0.3.6",
"@svgr/webpack": "6.5.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@types/d3": "7.4.0",
"@types/fs-extra": "11.0.1",
"@types/jest": "29.5.2",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@types/react-modal": "3.16.0",
"@types/sanitize-html": "2.9.0",
"@types/walk": "2.3.1",
"classnames": "2.3.2",
"cross-env": "7.0.3",
"d3": "7.8.5",
"formik": "2.4.3",
"front-matter": "4.0.2",
"fs-extra": "11.1.1",
"highlight.js": "11.8.0",
"husky": "8.0.3",
"jsdom": "22.1.0",
"marked": "4.3.0",
"moment": "2.29.4",
"postcss-normalize": "10.0.1",
"query-string": "8.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.10.1",
"react-modal": "3.16.1",
"react-router-dom": "6.14.0",
"react-scripts": "5.0.1",
"react-tooltip": "4.5.1",
"sanitize-html": "2.10.0",
"sass": "1.62.1",
"typescript": "4.9.5",
"walk": "2.3.15",
"xml-sitemap": "^0.3.2",
"yup": "1.2.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "4.1.1",
"@types/jsdom": "21.1.1",
"@types/marked": "4.3.1",
"@types/node": "18.16.18",
"@typescript-eslint/parser": "5.59.8",
"eslint": "8.41.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"yallist": "4.0.0"
},
"engines": {
"node": ">=16"
},
"overrides": {
"@svgr/webpack": "$@svgr/webpack",
"xml2js": "0.6.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}