-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.23 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
{
"name": "hybridilusmu-dev-env",
"version": "0.1.0",
"engines": {
"npm": ">=9.5.1",
"node": ">=18.16.0"
},
"scripts": {
"start": "docker compose -f compose.yaml -f compose-dev.yaml up -d --build lusmu",
"start:nest": "docker compose -f compose.yaml -f compose-dev.yaml up --build lusmu-nest",
"stop": "docker compose down",
"logs": "docker compose logs -f",
"init": "cd app && npm ci && cd ../app-nest && npm ci",
"test": "docker exec -t lusmu-dev npm test",
"test:integration": "docker exec -t lusmu-nest npm run test:integration",
"test:all": "npm test && npm test:integration",
"e2e:run": "set -o allexport && source .env.development && set +o allexport && cd e2e && npm test",
"e2e:open": "set -o allexport && source .env.development && set +o allexport && cd e2e && npm start",
"e2e:docker": "docker compose -f compose.yaml -f compose-dev.yaml run --build e2e cypress run",
"e2e:ci": "docker compose -f compose.yaml -f compose-ci.yaml run e2e cypress run",
"version": "scripts/version_sub_projects.sh $npm_package_version",
"postversion": "git push --tags",
"lint": "cd app && npm run lint"
},
"license": "MIT",
"devDependencies": {
"@nestjs/cli": "^10.1.10"
}
}