-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.67 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
{
"name": "root",
"private": true,
"version": "0.1.0",
"description": "An experimental MetaMask Snap for securely managing passwords.",
"main": "dist/index.js",
"repository": "https://github.com/Mrtenz/metamask-password-manager",
"author": "Maarten Zuidhoorn <maarten@zuidhoorn.com>",
"license": "MIT",
"packageManager": "yarn@3.2.3",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.19.0",
"@scure/bip32": "^1.1.0",
"@scure/bip39": "^1.1.0",
"@tsconfig/recommended": "^1.0.1",
"@types/node": "^18.7.16",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-monorepo": "^0.3.2",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.0.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-package-json": "^2.6.4",
"simple-git-hooks": "^2.8.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"scripts": {
"install:hooks": "simple-git-hooks",
"start": "yarn workspaces foreach --parallel --verbose --interlaced run start",
"build": "yarn workspaces foreach --parallel --verbose --topological run build",
"test": "jest",
"test:ci": "jest --coverage",
"lint": "yarn lint:source",
"lint:fix": "yarn lint:source --fix",
"lint:source": "eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write ."
},
"simple-git-hooks": {
"pre-commit": "yarn lint-staged"
}
}