-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 2.28 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
78
{
"name": "mmi-monorepo",
"version": "0.0.0-development",
"description": "Monorepo for MetaMask Institutional",
"repository": {
"type": "git",
"url": "https://github.com/consensys-vertical-apps/metamask-institutional.git"
},
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "node ./scripts/prepare.ts",
"updated": "lerna updated",
"test": "lerna run test --stream",
"test:watch": "jest --watchAll",
"test:watch:coverage": "jest --watchAll --coverage",
"test:cov": "jest src --ci --coverage",
"type-check": "tsc --noEmit",
"lint": "lerna run lint --stream --parallel --",
"lint:fix": "lerna run lint:fix --stream --parallel",
"prettier": "prettier --write packages",
"prettier:check": "prettier --check packages",
"build": "lerna run build --stream",
"compile": "tsc --build && cp \"./package.json\" ./dist/",
"bootstrap": "lerna bootstrap",
"clean": "rimraf dist && rimraf tsconfig.tsbuildinfo",
"exec": "lerna exec",
"publish": "lerna publish"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/config-lerna-scopes": "^17.4.2",
"@swc/core": "^1.6.6",
"@swc/jest": "^0.2.24",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
"jest": "^29.5.0",
"jest-coverage-badges": "^1.1.2",
"jest-junit": "^15.0.0",
"jest-sonar-reporter": "^2.0.0",
"lerna": "^8.1.7",
"lint-staged": "^13.1.2",
"nx": "^19.5.4",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"ts-jest": "^29.0.5",
"typescript": "^5.0.3"
},
"lint-staged": {
"*.ts": [
"yarn nx affected:lint --fix --parallel --uncommitted",
"yarn nx format:write --uncommitted"
]
},
"publishConfig": {
"access": "restricted"
},
"engines": {
"node": ">=18"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "[email protected]"
}