-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.92 KB
/
package.json
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "cryptoticketsstaking",
"version": "1.0.0",
"description": "TKT Staking contract",
"main": "index.js",
"scripts": {
"commit": "./node_modules/.bin/git-cz",
"compile": "./node_modules/.bin/truffle compile",
"test:contracts": "./scripts/run-tests.sh",
"test": "npm run test:contracts",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:sol": "npx solium -d .",
"lint:sol:fix": "npx solium -d . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cryptoticket/tkt_deposit_contract.git"
},
"author": "crypto.tickets team",
"license": "ISC",
"bugs": {
"url": "https://github.com/cryptoticket/tkt_deposit_contract/issues"
},
"homepage": "https://github.com/cryptoticket/tkt_deposit_contract#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS -g './commitlint.js'"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "commitizen.js"
}
},
"dependencies": {
"@openzeppelin/contracts": "^3.2.0",
"@openzeppelin/upgrades": "^2.8.0",
"babel-eslint": "^10.0.3",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"bignumber.js": "^8.0.2",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"bs58": "^4.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^3.0.0",
"conventional-changelog": "^3.1.8",
"coveralls": "^3.1.0",
"eslint-config-airbnb": "^18.1.0",
"eth-gas-reporter": "^0.2.0",
"ethereumjs-tx": "^1.3.4",
"ganache-cli": "^6.2.3",
"git-cz": "^3.0.1",
"mocha": "^5.2.0",
"mock-require": "^3.0.2",
"openzeppelin-solidity": "^2.1.2",
"solc": "^0.5.3",
"solidity-coverage": "^0.7.9",
"supertest": "^3.3.0",
"systeminformation": "^5.3.1",
"truffle": "^5.1.52",
"truffle-hdwallet-provider": "^1.0.5",
"web3": "^1.2.8",
"web3-utils": "^1.2.8"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@openzeppelin/truffle-upgrades": "^1.2.2",
"commitizen": "^3.0.5",
"cz-customizable": "^5.3.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^21.24.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-standard": "^3.1.0",
"husky": "^1.2.1",
"memory-cache": "^0.2.0",
"solium": "^1.1.8"
},
"jest": {
"coverageReporters": [
"json-summary",
"text",
"lcov"
]
}
}