forked from mitre/heimdall2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.76 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
{
"name": "root",
"version": "0.0.0",
"workspaces": [
"apps/*",
"libs/*",
"test"
],
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/mitre/heimdall2"
},
"scripts": {
"backend": "yarn workspace heimdall-server",
"build": "lerna run build",
"common": "yarn workspace @heimdall/common",
"cypress-test": "yarn workspace @heimdall/cypress-tests",
"frontend": "yarn workspace @mitre/heimdall-lite",
"hdf-converters": "yarn workspace @mitre/hdf-converters",
"inspecjs": "yarn workspace inspecjs",
"lint": "lerna run lint",
"lint:ci": "lerna run lint:ci",
"pack:all": "lerna exec yarn pack --scope inspecjs --scope @mitre/heimdall-lite --scope @mitre/hdf-converters --parallel",
"start": "yarn backend start",
"start:dev": "./node_modules/.bin/dotenv -e ./apps/backend/.env -- lerna exec yarn run start:dev --ignore @heimdall/common --ignore @mitre/hdf-converters --ignore @heimdall/password-complexity --ignore @heimdall/cypress-tests --ignore inspecjs",
"test:ui": "cypress run",
"test:ui:open": "cypress open"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.0.0",
"lerna": "^9.0.0",
"prettier": "^3.7.4",
"prettier-plugin-organize-imports": "^4.0.0",
"typescript": "^4.9.3"
},
"devDependencies": {
"dotenv-cli": "^11.0.0"
},
"resolutions": {
"@types/d3-dispatch": "3.0.6",
"@types/node": "^22.10.7",
"@types/chroma-js": "2.4.5",
"@apollo/protobufjs/@types/node": "^10.17.60",
"chroma-js": "2.4.2",
"fast-glob": "3.3.3"
},
"engines": {
"node": ">=22"
}
}