generated from dev-protocol/template-repos-ts-sol
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.76 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.76 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
{
"name": "github-market",
"version": "1.0.0",
"description": "GitHub Market",
"scripts": {
"test": "mocha --require ts-node/register 'test/**/*.ts' --timeout 300000 --parallel",
"pretest": "yarn generate",
"generate": "waffle waffle-config.json && tsc --build tsconfig.json",
"pregenerate": "yarn clean",
"exec": "node",
"preexec": "yarn build",
"deploy": "yarn exec scripts/deploy.js",
"lint": "yarn lint:eslint && yarn lint:solium && yarn lint:format",
"lint:eslint": "eslint . --ext .ts --fix",
"lint:solium": "solium --dir contracts/market --fix --no-soliumignore",
"lint:format": "prettier --write '**/*.{sol,js,json,md,yml}'",
"build": "tsc -p tsconfig.build.json",
"prebuild": "yarn generate",
"clean": "rimraf scripts/**/*.js build"
},
"author": "",
"license": "MPL-2.0",
"devDependencies": {
"@types/bent": "7.3.8",
"@types/chai": "5.2.3",
"@types/dotenv": "8.2.3",
"@types/mocha": "10.0.10",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"bent": "7.3.12",
"bignumber.js": "10.0.2",
"chai": "4.5.0",
"dotenv": "17.3.1",
"eslint": "7.32.0",
"eslint-config-prettier": "6.15.0",
"eslint-config-xo": "0.43.1",
"eslint-config-xo-typescript": "0.57.0",
"eslint-plugin-prettier": "4.2.5",
"ethereum-waffle": "3.4.0",
"ethlint": "1.2.5",
"husky": "7.0.4",
"mocha": "9.2.2",
"prettier": "2.8.8",
"prettier-plugin-solidity": "1.1.3",
"rimraf": "3.0.2",
"ts-node": "10.9.2",
"typescript": "5.0.4",
"web3": "1.7.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"dependencies": {
"@openzeppelin/contracts": "3.4.2",
"eslint-plugin-functional": "3.7.2"
}
}