-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
139 lines (139 loc) · 4.46 KB
/
package.json
File metadata and controls
139 lines (139 loc) · 4.46 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "contextcypher",
"version": "2.0.0",
"private": false,
"description": "Open-source AI-powered threat modeling and security analysis",
"author": "Threat Vector Security Pty Ltd",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Threat-Vector-Security/contextcypher.git"
},
"homepage": "./",
"engines": {
"node": ">=18.x",
"npm": ">=10.8.2"
},
"dependencies": {
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
"@csstools/normalize.css": "^12.1.1",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@google/generative-ai": "^0.21.0",
"@mdi/js": "^7.4.47",
"@mdi/react": "^1.6.1",
"@mui/icons-material": "6.5.0",
"@mui/material": "6.5.0",
"@react-three/drei": "^9.88.17",
"@react-three/fiber": "^8.15.12",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/dompurify": "^3.0.5",
"@types/lodash": "4.17.20",
"@types/node": "22.8.1",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/react-resizable": "3.0.8",
"@types/three": "^0.159.0",
"@types/uuid": "10.0.0",
"@xyflow/react": "^12.0.0",
"axios": "^1.13.6",
"dompurify": "^3.3.2",
"dotenv": "^16.4.5",
"file-saver": "2.0.5",
"html2canvas": "1.4.1",
"jspdf": "4.2.1",
"lodash": "4.17.23",
"lucide-react": "^0.454.0",
"perfect-freehand": "1.2.2",
"react": "^18.3.1",
"react-colorful": "^5.6.1",
"react-dom": "^18.3.1",
"react-draggable": "^4.4.6",
"react-resizable": "3.0.5",
"react-scripts": "5.0.1",
"recharts": "3.7.0",
"three": "^0.159.0",
"tsconfig-paths": "4.2.0",
"typescript": "4.9.5",
"uuid": "11.1.0",
"web-vitals": "^2.1.4"
},
"scripts": {
"prepare:version": "node scripts/sync-version.js",
"start": "node ./node_modules/cross-env/src/bin/cross-env.js REACT_APP_VERSION=$npm_package_version react-scripts start",
"ensure:vendor-icons": "node scripts/generate-vendor-icons-manifest.js",
"build": "npm run ensure:vendor-icons && node ./node_modules/cross-env/src/bin/cross-env.js REACT_APP_VERSION=$npm_package_version GENERATE_SOURCEMAP=true react-scripts build",
"build:prod": "npm run ensure:vendor-icons && node ./node_modules/cross-env/src/bin/cross-env.js REACT_APP_VERSION=$npm_package_version GENERATE_SOURCEMAP=false react-scripts build",
"start:no-browser": "node ./node_modules/cross-env/src/bin/cross-env.js BROWSER=none react-scripts start",
"test": "JEST_JUNIT_OUTPUT_DIR=reports jest",
"test:watch": "jest --watch --config jest.config.js",
"eject": "react-scripts eject",
"dev": "concurrently \"npm run backend\" \"npm run frontend\"",
"frontend": "react-scripts start",
"backend": "cd server && npm run dev",
"clean": "rimraf build dist",
"prepare:build": "npm ci && cd server && npm ci"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@types/jest": "29.5.14",
"concurrently": "9.2.0",
"cross-env": "7.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-html-reporter": "3.10.2",
"jest-junit": "16.0.0",
"jsdom": "25.0.1",
"postcss": "8.5.6",
"rimraf": "3.0.2",
"ts-jest": "29.2.5",
"webpack": "5.105.4"
},
"jest-junit": {
"outputDirectory": "reports",
"outputName": "junit.xml",
"includeConsoleOutput": true,
"usePathForSuiteName": "true"
},
"overrides": {
"@isaacs/brace-expansion": "^5.0.1",
"bfj": "^9.1.3",
"basic-ftp": "^5.2.0",
"minimatch@^3.0.0": "^3.1.4",
"minimatch@^5.0.0": "^5.1.8",
"minimatch@^10.0.0": "^10.2.4",
"rollup": "^2.80.0",
"serialize-javascript": "^7.0.3",
"nth-check": "^2.1.1",
"resolve-url-loader": {
"postcss": "^8.4.31"
},
"flatted": "^3.4.2",
"svgo": "^3.3.3",
"ajv@^6.0.0": "6.14.0",
"ajv@^8.0.0": "8.18.0",
"@tootallnate/once": "^3.0.1",
"qs": "^6.14.2",
"webpack-dev-server": "^5.2.3"
}
}