-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.03 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
{
"name": "oasis-contract",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "hardhat compile --config ./hardhat.config.ts",
"test": "hardhat test --config ./hardhat.config.ts",
"test:klaytn": "hardhat run scripts/live-test.ts --network klaytn",
"profile": "REPORT_GAS=true hardhat test --config ./hardhat.config.ts",
"lint:check": "npm run lint:check:format && npm run lint:check:solhint && npm run lint:check:eslint",
"lint:check:eslint": "eslint . --ext js,ts",
"lint:check:solhint": "npm run build && solhint --config .solhint.json contracts/**/*.sol",
"lint:check:format": "prettier --check **.{sol,ts}",
"lint:fix": "npm run lint:fix:format && npm run lint:fix:eslint",
"lint:fix:format": "prettier --write **.{sol,ts}",
"lint:fix:eslint": "eslint --fix . --ext js,ts",
"deploy:klaytn": "hardhat run scripts/deploy.ts --network klaytn",
"deploy:mumbai": "hardhat run scripts/deploy.ts --network mumbai"
},
"repository": {
"type": "git",
"url": "git+https://github.com/splytlabs/oasis-contract.git"
},
"keywords": [
"contract"
],
"author": "splytlabs",
"license": "ISC",
"bugs": {
"url": "https://github.com/splytlabs/oasis-contract/issues"
},
"homepage": "https://github.com/splytlabs/oasis-contract#readme",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"chai": "^4.3.6",
"dotenv": "^16.0.2",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^5.7.1",
"hardhat": "^2.11.1",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.3"
}
}