-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.5 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.5 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
{
"name": "contracts",
"version": "1.0.0",
"description": "Smart contract for dicether",
"main": "index.js",
"scripts": {
"build": "tsc",
"compile": "hardhat compile",
"node": "hardhat node",
"deploy": "hardhat ignition deploy ./ignition/modules/EnableGameChannel.ts --reset --network localhost --parameters ignition/parameters.json",
"deployInt": "hardhat ignition deploy ./ignition/modules/EnableGameChannel.ts --network intTest --parameters ignition/parameters.json",
"test": "hardhat test test/**/*.ts",
"clean": "shx rm -r ./artifacts",
"eslint": "eslint './**/*.{js,ts,tsx}'",
"eslint-fix": "eslint --fix './**/*.{js,ts,tsx}'",
"prettier": "prettier --write './**/*.{js,ts,tsx}'",
"prettier-check": "prettier --check './**/*.{js,ts,tsx}'",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"prettier": "@dicether/prettier-config",
"keywords": [
"dice"
],
"author": "Dicether",
"license": "AGPL-3.0-only",
"devDependencies": {
"@dicether/eslint-config": "^2.2.0",
"@dicether/prettier-config": "^1.0.0",
"@dicether/state-channel": "^2.0.0",
"@nomicfoundation/hardhat-toolbox-viem": "^4.1.0",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"left-pad": "^1.1.3",
"lint-staged": "^16.2.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"shx": "^0.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
}
}