-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.59 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
{
"name": "root",
"version": "0.0.0",
"private": true,
"license": "SEE LICENSE IN LICENSE.md",
"description": "snAAps Account Abstraction snap and site for MetaMask",
"homepage": "https://github.com/incirLabs/snaaps#readme",
"bugs": {
"url": "https://github.com/incirLabs/snaaps/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/incirLabs/snaaps"
},
"workspaces": [
"packages/*"
],
"scripts": {
"start": "yarn workspace contracts hardhat compile && yarn workspaces foreach --parallel --verbose --interlaced run start",
"build": "yarn workspace contracts hardhat compile && yarn workspaces foreach --parallel --verbose --topological run build",
"test": "yarn workspaces foreach --parallel --verbose run test",
"docs": "yarn workspaces foreach --parallel --verbose --interlaced run docs",
"lint": "yarn workspaces foreach --parallel --verbose run lint",
"lint:check": "yarn workspaces foreach --parallel --verbose run lint:check",
"format": "yarn workspaces foreach --parallel --verbose run format",
"format:check": "yarn workspaces foreach --parallel --verbose run format:check",
"check": "yarn workspaces foreach --parallel --verbose run check"
},
"devDependencies": {
"@lavamoat/allow-scripts": "^3.0.0",
"@lavamoat/preinstall-always-fail": "^2.0.0",
"@metamask/eslint-config": "^12.2.0",
"@metamask/eslint-config-jest": "^12.1.0",
"@metamask/eslint-config-nodejs": "^12.1.0",
"@metamask/eslint-config-typescript": "^12.1.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"depcheck": "^1.4.6",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.3.0",
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsdoc": "^40.0.3",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"hardhat": "^2.19.1",
"prettier": "^3.1.0",
"typescript": "^5.2.2"
},
"packageManager": "yarn@3.6.3",
"engines": {
"node": ">=18.0.0"
},
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false,
"hardhat>@nomicfoundation/ethereumjs-blockchain>level>classic-level": false,
"hardhat>@nomicfoundation/ethereumjs-tx>ethereum-cryptography>secp256k1": false,
"hardhat>keccak": false,
"hardhat>ws>bufferutil": false,
"hardhat>ws>utf-8-validate": false
}
}
}