forked from dcgtc/dgrants
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 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
{
"name": "dgrants",
"version": "0.0.1",
"private": true,
"workspaces": [
"app",
"contracts",
"types"
],
"devDependencies": {
"concurrently": "^6.2.0",
"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"
},
"husky": {
"hooks": {
"pre-commit": "lerna run precommit"
}
},
"volta": {
"node": "14.16.1",
"yarn": "1.22.10"
}
}