-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.53 KB
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": "practical-tuples",
"version": "0.0.0",
"private": true,
"scripts": {
"prepare": "husky install",
"commit": "cz",
"install-all": "npm install && cd backend && npm install && cd ../frontend && npm install",
"update-all": "npm update && npm audit fix && cd backend && npm update && npm audit fix && cd ../frontend && npm update && npm audit fix",
"start": "npm-run-all --parallel --race --print-label database backend frontend",
"database": "cd backend && docker-compose up",
"backend": "npm run --prefix backend start",
"frontend": "npm run --prefix frontend start",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "npm run --prefix backend lint && npm run --prefix frontend lint",
"lint:fix": "npm run --prefix backend lint:fix && npm run --prefix frontend lint:fix",
"test": "npm run --prefix backend test && npm run --prefix frontend test",
"release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/node": "^17.0.17",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"npm-run-all": "^4.1.5",
"prettier": "2.5.0",
"semantic-release": "~18.0.1"
}
}