-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.22 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.22 KB
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
{
"private": true,
"name": "strata",
"version": "0.0.1",
"description": "Strata CDO Contracts",
"scripts": {
"node": "hardhat node",
"test": "atma test",
"clean": "hardhat clean",
"watch": "hardhat compile --watch",
"compile": "hardhat compile",
"coverage": "hardhat clean && atma --max-old-space-size=12000 test --coverage",
"coverage-nocompile": "atma --max-old-space-size=12000 test --coverage --no-compile",
"coverage-server": "cd coverage/report && npx atma server",
"deploy-local": "atma act tasks/deploy.act.ts -q \"deploy and configure\" --chain hardhat",
"fork-eth": "hardhat node --verbose --show-stack-traces --fork %MAINNET_RPC_URL%"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Strata-Money/contracts-tranches.git"
},
"author": "Strata",
"license": "BUSL-1.1",
"bugs": {
"url": "https://github.com/Strata-Money/contracts-tranches/issues"
},
"homepage": "https://github.com/Strata-Money/contracts-tranches#readme",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"atma": "^0.15.24",
"hardhat": "^2.24.2"
},
"dependencies": {
"@0xweb/hardhat": "^0.1.37",
"@nomicfoundation/hardhat-foundry": "^1.1.3",
"@nomicfoundation/hardhat-verify": "^2.0.13",
"@openzeppelin/contracts": "^5.2.0",
"@openzeppelin/contracts-upgradeable": "^5.3.0",
"@prb/math": "^4.1.0",
"0xweb": "^0.11.1",
"a-di": "latest",
"alot": "latest",
"appcfg": "^0.5.11",
"atma-io": "^1.3.8",
"atma-loader-ts": "latest",
"atma-utest": "^0.21.36",
"class-json": "latest",
"dequanto": "^0.1.99",
"dotenv": "^16.4.7",
"hardhat": "latest",
"memd": "latest",
"tsconfig-paths": "^4.2.0"
},
"atma": {
"plugins": [
"atma-loader-ts"
],
"settings": {
"include": {
"amd": true,
"extensionDefault": {
"js": "ts"
},
"routes": "#import ./tsconfig.json compilerOptions.paths"
},
"atma-loader-ts": {
"sourceMap": true,
"typescript": {
"compilerOptions": {
"module": "AMD",
"target": "ES2022"
},
"extends": "./tsconfig.json"
}
}
}
}
}