-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1015 Bytes
/
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
{
"name": "nevlemar",
"version": "1.0.0",
"private": true,
"repository": "[email protected]:artemmartyhin/nevlemar.git",
"author": "Artem Martiukhin <[email protected]>",
"license": "MIT",
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"husky": "^8.0.0",
"lerna": "^7.4.1"
},
"scripts": {
"test": "npx lerna run test",
"build": "npx lerna run build",
"prepare": "husky install",
"docker:build": "docker-compose build --no-cache",
"docker:up": "docker-compose up -d --build",
"docker:up-nodeps": "docker-compose up -d --build",
"docker:down": "docker-compose down -v",
"docker:up-front": "docker-compose up -d --no-deps --build frontend",
"docker:up-back": "docker-compose up -d --no-deps --build backend"
},
"dependencies": {
"dotenv": "^16.3.1"
}
}