-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
77 lines (77 loc) · 2.42 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
68
69
70
71
72
73
74
75
76
77
{
"name": "@ubiquity/monorepo",
"version": "1.0.1-beta",
"private": true,
"author": "Ubiquity DAO",
"license": "Apache-2.0",
"workspaces": [
"packages/dapp",
"packages/contracts"
],
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@lavamoat/allow-scripts": "^2.3.0",
"@types/prettier": "^2",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"cspell": "6.31.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsc": "^2.0.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.19",
"prettier": "2.8.8",
"prettier-plugin-solidity": "^1.2.0",
"rimraf": "3.0.2",
"typechain": "^8.3.2",
"yarn-audit-fix": "^9.3.7"
},
"scripts": {
"build:all": "yarn workspaces foreach run build",
"build:dapp": "yarn workspace @ubiquity/dapp run build",
"dev:dapp": "yarn workspace @ubiquity/dapp run start",
"test:all": "yarn workspace @ubiquity/contracts run test:unit",
"coverage": "yarn workspace @ubiquity/contracts run test:coverage",
"format:all": "yarn workspaces foreach run format",
"clean:all": "yarn workspaces foreach run clean && rimraf node_modules",
"lint:all": "yarn workspaces foreach run lint",
"build:ci:netlify": "yarn build:all",
"postinstall": "husky install",
"lint:cspell:all:watch": "nodemon -e sol,ts,tsx --exec 'yarn lint:cspell:all --fail-fast'",
"lint:cspell:all": "cspell $(find . -type f \\( -name '*.sol' -o -name '*.tsx' -o -name '*.ts' \\) ! -path '*/node_modules/*' ! -path '*/lib/*' ! -path '*/types/*')"
},
"engines": {
"node": ">=20.10.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"prettier --write",
"eslint --fix --max-warnings=0",
"cspell --no-must-find-files"
],
"*.sol": [
"prettier --plugin=prettier-plugin-solidity --write",
"cspell --no-must-find-files"
]
},
"packageManager": "[email protected]",
"lavamoat": {
"allowScripts": {
"$root$": true,
"bufferutil": true,
"utf-8-validate": true,
"styled-components": false,
"keccak": true,
"dtrace-provider": true,
"bigint-buffer": true,
"secp256k1": true,
"classic-level": true,
"@ubiquity/monorepo": true,
"napi-macros/example": true,
"husky": true
}
}
}