forked from blacksmith-infosec/risk-assessments
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.42 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.42 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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "blacksmith-free-risk-assessment-tool",
"version": "0.2.0",
"description": "A free risk assessment tool for MSPs to evaluate their client's and prospect's security posture.",
"type": "module",
"scripts": {
"build": "vite build",
"start": "vite",
"lint": "eslint --ext .jsx,.js,.ts,.tsx .",
"test": "vitest run --coverage",
"test:watch": "vitest watch --coverage"
},
"author": "Jared Casner <jcasner@blacksmithinfosec.com>",
"license": "Apache-2.0",
"dependencies": {
"@amplitude/analytics-browser": "^2.29.0",
"prop-types": "15.8.1",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-router-dom": "7.9.4",
"recharts": "^3.4.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.28.5",
"@eslint/compat": "^1.4.0",
"@eslint/js": "^9.38.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.10.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.2",
"@vitejs/plugin-react": "^5.0.4",
"@vitest/coverage-v8": "^4.0.6",
"eslint": "^9.39.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.5.0",
"jsdom": "^27.0.1",
"vite": "^7.2.2",
"vitest": "^4.0.6"
},
"overrides": {
"braces": "3.0.3",
"micromatch": "4.0.8"
}
}