-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
42 lines (42 loc) · 1.41 KB
/
package.json
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
{
"name": "root",
"private": true,
"workspaces": [
"apps/*",
"libs/*",
"test"
],
"scripts": {
"backend": "yarn workspace heimdall-server",
"build": "lerna run build",
"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/interfaces --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": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"lerna": "^8.1.2",
"prettier": "^3.2.4",
"prettier-plugin-organize-imports": "^4.0.0",
"typescript": "^4.9.3"
},
"devDependencies": {
"dotenv-cli": "^7.0.0"
},
"engines": {
"node": "^18.19.0"
},
"version": "0.0.0"
}