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
21 lines (21 loc) · 954 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "opencti",
"packageManager": "yarn@4.12.0+sha512.f45ab632439a67f8bc759bf32ead036a1f413287b9042726b7cc4818b7b49e14e9423ba49b18f9e06ea4941c1ad062385b1d8760a8d5091a1a31e5f6219afca8",
"devDependencies": {
"nx": "22.5.4"
},
"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",
"renovate:dry-run": "LOG_LEVEL=debug yarn dlx renovate --dry-run --platform=local"
}
}