-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.96 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
{
"name": "tokens",
"version": "1.0.0",
"description": "X Protocol Smart Contracts",
"main": "index.js",
"private": true,
"scripts": {
"test": "cross-env NODE_ENV=test hardhat test",
"coverage": "cross-env NODE_ENV=test hardhat coverage",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix && npm run lint:sol:fix",
"lint:js": "prettier --loglevel warn --ignore-path .gitignore '**/*.{js,ts}' --check && eslint --ignore-path .gitignore .",
"lint:js:fix": "prettier --loglevel warn --ignore-path .gitignore '**/*.{js,ts}' --write && eslint --ignore-path .gitignore . --fix",
"lint:sol": "prettier --loglevel warn --ignore-path .gitignore '{contracts,test}/**/*.sol' --check && solhint '{contracts,test}/**/*.sol'",
"lint:sol:fix": "prettier --loglevel warn --ignore-path .gitignore '{contracts,test}/**/*.sol' --write",
"compile": "hardhat clean && hardhat compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mountainprotocol/tokens.git"
},
"author": "Mati <mattiascaricato@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mountainprotocol/tokens/issues"
},
"homepage": "https://github.com/mountainprotocol/tokens#readme",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-toolbox": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"@openzeppelin/test-helpers": "^0.5.16",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"hardhat": "^2.22.13",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1",
"solidity-coverage": "^0.8.5"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.2",
"@openzeppelin/contracts-upgradeable": "^4.9.2"
}
}