forked from ESN-MESA/MESAapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.16 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": "tumi",
"license": "MIT",
"private": true,
"version": "5.7.0",
"workspaces": [
"server",
"legacy-app",
"shared/*"
],
"scripts": {
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"legacy-app": "yarn workspace @tumi/legacy-app dev",
"server": "yarn workspace @tumi/server dev",
"dev": "concurrently --kill-others-on-fail --names 'SERVER,ANGULAR' \"yarn server\" \"yarn legacy-app\"",
"build:all": "yarn workspace @tumi/server build:production && yarn workspace @tumi/legacy-app build",
"release:draft": "conventional-github-releaser -p angular --draft",
"recommended-version": "conventional-recommended-bump -p angular",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"release": "conventional-github-releaser -p angular"
},
"engines": {
"node": ">=18.0.0 <19.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"concurrently": "^8.0.1"
},
"volta": {
"node": "18.12.1",
"yarn": "1.22.19"
},
"devDependencies": {
"@playwright/test": "^1.32.3",
"dotenv-cli": "^7.2.1",
"wait-on": "^7.0.1"
}
}