forked from OpenCTI-Platform/opencti
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.21 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
{
"name": "opencti",
"private": true,
"type": "module",
"packageManager": "yarn@4.17.1+sha512.ccbfabf7d7b6b32075088be9386fb9a2e00bb6887ef07fa56effabc890a56d53da1ccc4128d62db245fcbd3961b236d75335bdf7d5320ed6eafb7588b7ad4697",
"devDependencies": {
"nx": "23.1.0"
},
"scripts": {
"deps": "nx run-many --tuiAutoExit --target install",
"dev": "nx run-many --target dev",
"build": "nx run-many --tuiAutoExit --target build",
"test": "nx run-many --tuiAutoExit --target test,e2e",
"lint": "nx run-many --tuiAutoExit --target lint",
"graphql": "nx run-many --tuiAutoExit --target graphql",
"with-python-venv": "node scripts/with_python_virtual_env.mjs",
"deps:venv": "yarn with-python-venv yarn deps",
"build:venv": "yarn with-python-venv yarn build",
"dev:venv": "yarn with-python-venv yarn dev",
"test:venv": "yarn with-python-venv yarn test",
"build:ubi9": "nx run-many --tuiAutoExit --target build-ubi9",
"push:ubi9": "nx run-many --tuiAutoExit --target push-ubi9",
"renovate:dry-run": "LOG_LEVEL=debug yarn dlx renovate --dry-run --platform=local"
},
"resolutions": {
"axios": "1.18.1"
},
"dependenciesMeta": {
"nx": {
"built": false
}
}
}