-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 821 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 821 Bytes
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
{
"name": "open-vote",
"version": "1.0.0",
"repository": {
"url": "https://github.com/otaviotscha/open-vote.git",
"type": "git"
},
"author": "Otávio L. Tschá <otavio.tscha.sting@gmail.com>",
"license": "MIT",
"packageManager": "yarn@3.6.1",
"scripts": {
"prepare": "husky install",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"build": "yarn workspaces foreach run build",
"compile": "yarn build"
},
"workspaces": [
"api/rest",
"application",
"entities",
"repositories"
],
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@commitlint/prompt-cli": "^17.6.7",
"husky": "^8.0.0",
"lint-staged": "^13.2.3",
"pinst": "^3.0.0"
}
}