generated from proofoftom/buidler-waffle-typechain-quasar
-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
65 lines (65 loc) · 2.49 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
{
"name": "@clrfund/monorepo",
"repository": "https://github.com/clrfund/monorepo",
"license": "GPL-3.0",
"private": true,
"workspaces": {
"packages": [
"common",
"contracts",
"vue-app",
"subgraph"
],
"nohoist": [
"**/@nomiclabs/**",
"**/snarkjs/**",
"**/snarkjs",
"**/maci-core/**",
"**/maci-core",
"**/maci-circuits/**",
"**/maci-circuits",
"**/maci-cli/**",
"**/maci-cli",
"**/maci-contracts/**",
"**/maci-contracts"
]
},
"lint-staged": {
"**/*.{js,ts,json,scss,css,vue}": [
"prettier --write"
]
},
"scripts": {
"build": "yarn workspaces run build",
"build:contracts": "yarn workspace @clrfund/contracts run build",
"build:web": "yarn workspace @clrfund/vue-app run build",
"build:subgraph": "yarn workspace @clrfund/subgraph run codegen && yarn workspace @clrfund/subgraph run build",
"start:dev": "yarn deploy:local && yarn start:subgraph && yarn start:web",
"start:node": "yarn workspace @clrfund/contracts run node",
"start:web": "yarn workspace @clrfund/vue-app run serve",
"start:subgraph": "yarn workspace @clrfund/subgraph run prepare:hardhat && yarn build:subgraph && yarn deploy:local-subgraph",
"test": "yarn workspace @clrfund/contracts run test && yarn workspace @clrfund/vue-app run test",
"test:contracts": "yarn workspace @clrfund/contracts run test",
"test:e2e": "yarn workspace @clrfund/contracts run e2e",
"test:web": "yarn workspace @clrfund/vue-app run test",
"test:common": "yarn workspace @clrfund/common run test",
"test:format": "yarn prettier --check",
"test:lint-i18n": "echo yarn workspace @clrfund/vue-app run test:lint-i18n --ci",
"deploy:subgraph": "yarn workspace @clrfund/subgraph run deploy",
"deploy:local": "yarn workspace @clrfund/contracts run deploy:local",
"deploy:local-subgraph": "yarn workspace @clrfund/subgraph run create-local && yarn workspace @clrfund/subgraph run deploy-local",
"lint": "yarn workspaces run lint",
"lint:contracts": "yarn workspace @clrfund/contracts run lint",
"lint:web": "yarn workspace @clrfund/vue-app run lint",
"lint:subgraph": "yarn workspace @clrfund/subgraph run lint",
"prettier": "prettier \"**/*.+(js|ts|json|scss|css|vue)\"",
"format": "yarn prettier --write",
"prepare": "husky install"
},
"devDependencies": {
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "3.0.3",
"typechain": "^3.0.0"
}
}