-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.58 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.58 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
{
"name": "try-out",
"private": true,
"version": "1.0.0",
"description": "Template repository for using TypeScript and Solidity",
"scripts": {
"test": "truffle test test/*.ts",
"pretest": "npm run generate",
"generate": "truffle compile && typechain --target truffle './build/**/*.json'",
"deploy": "truffle migrate --network",
"predeploy": "npm run build",
"lint": "npm run lint:eslint && npm run lint:solium && npm run lint:format",
"lint:eslint": "eslint . --ext .ts,.js --fix",
"lint:solium": "solium --dir . --fix",
"lint:format": "prettier --write '**/*.{sol,js,json,md,yml}'",
"build": "tsc -p tsconfig.build.json",
"prebuild": "rm -f migrations/*.js && npm run generate"
},
"author": "",
"license": "MPL-2.0",
"devDependencies": {
"@truffle/hdwallet-provider": "1.0.34",
"@types/dotenv": "8.2.0",
"@typescript-eslint/eslint-plugin": "2.28.0",
"@typescript-eslint/parser": "2.28.0",
"bignumber.js": "9.0.0",
"dotenv": "8.2.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"eslint-config-xo": "0.29.1",
"eslint-config-xo-typescript": "0.27.0",
"eslint-plugin-prettier": "3.1.3",
"ethlint": "1.2.5",
"husky": "4.2.5",
"prettier": "2.0.4",
"prettier-plugin-solidity": "1.0.0-alpha.48",
"truffle": "5.1.22",
"truffle-hdwallet-provider": "1.0.17",
"truffle-typings": "1.0.8",
"ts-generator": "0.0.8",
"ts-node": "8.8.2",
"typechain": "1.0.5",
"typechain-target-truffle": "1.0.2",
"typescript": "3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"@openzeppelin/contracts": "2.5.0"
}
}