-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
67 lines (67 loc) · 1.99 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
62
63
64
65
66
67
{
"name": "dgrants",
"version": "0.0.1",
"private": true,
"workspaces": [
"app",
"contracts",
"dcurve",
"types",
"utils"
],
"devDependencies": {
"concurrently": "^6.2.0",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"husky": "^7.0.0",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typescript": "<4.1.0"
},
"scripts": {
"build": "lerna run build",
"clean": "lerna run clean",
"node": "yarn contracts app:node",
"dev": "concurrently --restart-tries 5 --kill-others \"yarn run node\" \"yarn contracts app:setup && yarn app dev\"",
"lint": "lerna run lint",
"postinstall": "lerna run postinstall",
"prettier": "lerna run prettier",
"prepare": "lerna run prepare && husky install",
"test": "lerna run test",
"app": "yarn workspace @dgrants/app",
"contracts": "yarn workspace @dgrants/contracts",
"types": "yarn workspace @dgrants/types",
"dcurve": "yarn workspace @dgrants/dcurve",
"utils": "yarn workspace @dgrants/utils",
"bump:patch": "lerna version prepatch --preid $(git rev-parse --short HEAD) --yes",
"bump:minor": "lerna version preminor --preid $(git rev-parse --short HEAD) --yes",
"bump:major": "lerna version premajor --preid $(git rev-parse --short HEAD) --yes",
"release:patch": "lerna version patch --yes",
"release:minor": "lerna version minor --yes",
"release:major": "lerna version major --yes"
},
"husky": {
"hooks": {
"pre-commit": "lerna run precommit"
}
},
"volta": {
"node": "14.17.4",
"yarn": "1.22.10"
},
"resolutions": {
"brorand": "https://github.com/buu700/brorand#1b8c372b3c78bd5287728c1d5b4bf9cb8b708196"
},
"changelog": {
"labels": {
"enhancement": "Enhancement",
"bug": "Bug Fix",
"breaking": "Breaking Change",
"documentation": "Documentation",
"internal": "Internal"
}
}
}