-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 781 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 781 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
{
"name": "collaboration",
"version": "1.1.0",
"private": true,
"repository": "git@github.com:opensquare-network/collaboration.git",
"author": "OpenSquare <https://www.opensquare.network/>",
"license": "Apache-2.0",
"engines": {
"node": ">=15.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"eslint": "^8.57.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"scripts": {
"prepare": "husky install && husky set .husky/pre-commit \"npx lint-staged\"",
"test": "yarn workspace @collaboration/voting test"
},
"packageManager": "yarn@3.6.4"
}