-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
39 lines (39 loc) · 2.04 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
{
"name": "jhipster-sample-application",
"version": "0.0.0",
"description": "Description for Jhipster Sample Application",
"license": "UNLICENSED",
"workspaces": [
"src/JhipsterSampleApplication/ClientApp"
],
"scripts": {
"app:up": "docker compose -f docker/app.yml up --wait",
"ci:e2e:dev": "concurrently -k -s first -n application,e2e -c red,blue npm:app:start npm:e2e:headless",
"ci:e2e:prepare": "npm run ci:e2e:prepare:docker",
"ci:e2e:prepare:docker": "npm run services:up --if-present && docker ps -a",
"ci:e2e:run": "concurrently -k -s first \"npm run ci:e2e:server:start\" \"npm run e2e:headless\"",
"ci:e2e:server:start": "docker compose -f docker/app.yml up --wait",
"ci:e2e:teardown": "npm run ci:e2e:teardown:docker --if-present",
"ci:frontend:test": "npm run -w src/JhipsterSampleApplication/ClientApp/ ci:frontend:test",
"docker:db:up": "echo \"Docker for db sqllite not configured for application JhipsterSampleApplication\"",
"e2e:dev": "concurrently -k -s first -n application,e2e -c red,blue npm:app:start npm:e2e",
"e2e:devserver": "concurrently -k -s first -n backend,frontend,e2e -c red,yellow,blue npm:backend:start npm:start \"wait-on -t 180000 http-get://127.0.0.1:9000 && npm run e2e:headless -- -c baseUrl=http://localhost:9000\"",
"e2e:headless": "npm run -w src/JhipsterSampleApplication/ClientApp/ e2e:headless",
"prettier:check": "prettier --check \"{,src/**/,webpack/,.blueprint/**/}*.{md,json,yml,js,cjs,mjs,ts,cts,mts,html,css,scss}\"",
"prettier:format": "prettier --write \"{,src/**/,webpack/,.blueprint/**/}*.{md,json,yml,js,cjs,mjs,ts,cts,mts,html,css,scss}\"",
"test": "npm test -w src/JhipsterSampleApplication/ClientApp/",
"webapp:build": "npm run -w src/JhipsterSampleApplication/ClientApp/ webapp:build"
},
"config": {
"default_environment": "prod"
},
"devDependencies": {
"concurrently": "9.1.2",
"prettier": "3.5.3",
"prettier-plugin-packagejson": "2.5.10"
},
"overrides": {
"browser-sync": "3.0.3",
"webpack": "5.98.0"
}
}