-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
114 lines (114 loc) · 5.17 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@lukso/lsp-smart-contracts-monorepo",
"version": "0.14.0",
"description": "The reference smart contract implementation for the LUKSO LSP standards",
"private": true,
"packageManager": "^[email protected]",
"npmClient": "npm",
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lukso-network/lsp-smart-contracts/issues"
},
"homepage": "https://github.com/lukso-network/lsp-smart-contracts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/lukso-network/lsp-smart-contracts.git"
},
"keywords": [
"Blockchain",
"Ethereum",
"EVM",
"LUKSO",
"LSP",
"Smart Contracts",
"Standards",
"Solidity",
"Universal Profiles"
],
"scripts": {
"preinstall": "npx --yes force-resolutions",
"build": "turbo build",
"build:foundry": "turbo build:foundry",
"build:js": "turbo build:js",
"build:types": "turbo build:types",
"clean": "turbo clean",
"format": "prettier --write .",
"lint": "turbo lint",
"lint:solidity": "turbo lint:solidity",
"package": "turbo package",
"test": "turbo test",
"test:foundry": "turbo test:foundry --filter='!@lukso/lsp16-contracts'",
"test:coverage": "turbo test:coverage",
"test:mocks": "hardhat test --no-compile packages/lsp-smart-contracts/tests/Mocks/*.test.ts",
"test:up": "hardhat test --no-compile packages/lsp-smart-contracts/tests/UniversalProfile.test.ts",
"test:upinit": "hardhat test --no-compile packages/lsp-smart-contracts/tests/UniversalProfileInit.test.ts",
"test:lsp1": "hardhat test --no-compile packages/lsp-smart-contracts/tests/LSP1UniversalReceiver/*.test.ts",
"test:lsp6": "hardhat test --no-compile packages/lsp-smart-contracts/tests/LSP6KeyManager/LSP6KeyManager.test.ts",
"test:lsp6init": "hardhat test --no-compile packages/lsp-smart-contracts/tests/LSP6KeyManager/LSP6KeyManagerInit.test.ts",
"test:lsp7": "hardhat test --no-compile packages/lsp-smart-contracts/tests/LSP7DigitalAsset/standard/*.test.ts",
"test:lsp7init": "hardhat test --no-compile packages/lsp-smart-contracts/tests/LSP7DigitalAsset/proxy/*.test.ts",
"test:lsp8": "hardhat test --no-compile packages/lsp-smart-contracts/tests/LSP8IdentifiableDigitalAsset/standard/*.test.ts",
"test:lsp8init": "hardhat test --no-compile packages/lsp-smart-contracts/tests/LSP8IdentifiableDigitalAsset/proxy/*.test.ts",
"test:lsp9": "hardhat test --no-compile packages/lsp-smart-contracts/tests/LSP9Vault/LSP9Vault.test.ts",
"test:lsp9init": "hardhat test --no-compile packages/lsp-smart-contracts/tests/LSP9Vault/LSP9VaultInit.test.ts",
"test:lsp11": "hardhat test --no-compile packages/lsp-smart-contracts/tests/LSP11BasicSocialRecovery/LSP11BasicSocialRecovery.test.ts",
"test:lsp11init": "hardhat test --no-compile packages/lsp-smart-contracts/tests/LSP11BasicSocialRecovery/LSP11BasicSocialRecoveryInit.test.ts",
"test:lsp17": "hardhat test --no-compile packages/lsp-smart-contracts/tests/LSP17ContractExtension/LSP17Extendable.test.ts",
"test:lsp17extensions": "hardhat test --no-compile packages/lsp-smart-contracts/tests/LSP17Extensions/**/*.test.ts",
"test:lsp20": "hardhat test --no-compile packages/lsp-smart-contracts/tests/LSP20CallVerification/LSP6/LSP20WithLSP6.test.ts",
"test:lsp20init": "hardhat test --no-compile packages/lsp-smart-contracts/tests/LSP20CallVerification/LSP6/LSP20WithLSP6Init.test.ts",
"test:lsp23": "hardhat test --no-compile packages/lsp-smart-contracts/tests/LSP23LinkedContractsDeployment/LSP23LinkedContractsDeployment.test.ts",
"test:reentrancy": "hardhat test --no-compile packages/lsp-smart-contracts/tests/Reentrancy/Reentrancy.test.ts",
"test:reentrancyinit": "hardhat test --no-compile packages/lsp-smart-contracts/tests/Reentrancy/ReentrancyInit.test.ts"
},
"dependencies": {
"@erc725/smart-contracts-v8": "npm:@erc725/[email protected]"
},
"devDependencies": {
"@b00ste/hardhat-dodoc": "^0.3.16",
"@erc725/erc725.js": "0.23.0",
"@lukso/eip191-signer.js": "^0.2.2",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@turbo/gen": "^1.12.3",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "9.1.0",
"all-contributors-cli": "^6.26.1",
"dotenv": "^16.0.3",
"esbuild": "^0.17.15",
"eslint": "^7.32.0",
"eslint-config-custom": "*",
"eth-create2-calculator": "^1.1.5",
"ethers": "^6.11.0",
"hardhat": "^2.20.1",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-deploy": "^0.12.0",
"hardhat-deploy-ethers": "^0.4.2",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-packager": "^1.4.2",
"markdown-table-ts": "^1.0.3",
"npm-run-all": "^4.1.5",
"pluralize": "^8.0.0",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.4.1",
"rollup-plugin-esbuild": "^5.0.0",
"solhint": "^5.0.3",
"ts-node": "^10.2.0",
"turbo": "latest",
"typechain": "^8.3.2",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vite-plugin-checker": "^0.5.6",
"vite-tsconfig-paths": "^4.0.7",
"web3": "^1.5.2",
"zx": "^7.2.3"
},
"workspaces": [
"config/*",
"packages/*"
],
"resolutions": {
"@typechain/hardhat": "9.1.0"
}
}