-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.61 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
{
"name": "avalon-monorepo",
"version": "35.3.1",
"description": "A monorepo for avalon",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "npm run serve --workspace=packages/ui & npm run dev --workspace=packages/backend",
"test": "npm run test --workspace=packages/backend",
"build:ui": "NODE_ENV=production npm run build --workspace=packages/ui",
"start:backend": "NODE_ENV=production npm run start --workspace=packages/backend",
"version": "docker version && npm run test && npm version $npm_package_version --no-git-tag-version --workspaces && git add . && npm run image:build",
"image:ui": "docker build --tag razdva12/nginx-avalon:V$npm_package_version --file ui.Dockerfile . && docker push razdva12/nginx-avalon:V$npm_package_version",
"image:backend": "docker build --tag razdva12/backend-avalon:V$npm_package_version --file backend.Dockerfile . && docker push razdva12/backend-avalon:V$npm_package_version",
"image:build": "npm run image:ui && npm run image:backend"
},
"dependencies": {
"eventemitter3": "^5.0.1",
"lodash": "^4.17.21",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.4",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"lefthook": "^1.5.5",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0"
}
}