-
Notifications
You must be signed in to change notification settings - Fork 149
/
package.json
61 lines (61 loc) · 1.69 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "blockstack-gaia-monorepo",
"private": true,
"license": "MIT",
"engines": {
"node": ">=12"
},
"scripts": {
"postinstall": "run-p postinstall:*",
"postinstall:hub": "cross-env NODE_ENV=development npm install --prefix hub",
"postinstall:reader": "cross-env NODE_ENV=development npm install --prefix reader",
"postinstall:admin": "cross-env NODE_ENV=development npm install --prefix admin",
"test": "run-p test:*",
"test:hub": "npm test --prefix hub",
"test:reader": "npm test --prefix reader",
"test:admin": "npm test --prefix admin",
"audit:all": "npm audit && npm audit --prefix hub && npm audit --prefix reader && npm audit --prefix admin",
"clean": "rimraf ./node_modules ./*/node_modules ./*/lib",
"codecovUpload": "codecov"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"codecov": "^3.7.1",
"cross-env": "^7.0.3",
"husky": "^8.0.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/changelog",
"@semantic-release/git",
[
"semantic-release-slack-bot",
{
"notifyOnSuccess": true,
"notifyOnFail": true,
"markdownReleaseNotes": true
}
]
]
},
"dependencies": {
"@stacks/encryption": "^4.3.0",
"@stacks/storage": "^4.3.0"
}
}