-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
62 lines (62 loc) · 1.95 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
{
"name": "ethernauts",
"version": "0.0.1",
"description": "EthernautDAO's first NFT project",
"main": "index.js",
"homepage": "https://github.com/ethernautdao/ethernauts#readme",
"private": true,
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ethernautdao/ethernauts.git"
},
"engines": {
"node": "16.13.2",
"npm": "^8.1.2"
},
"keywords": [
"Ethereum",
"NFT",
"Ethernaut",
"EthernautDAO",
"DAO",
"Developer",
"Solidity"
],
"author": "EthernautDAO",
"license": "ISC",
"bugs": {
"url": "https://github.com/ethernautdao/ethernauts/issues"
},
"scripts": {
"test": "npm run --workspaces --if-present test",
"coverage": "npm run --workspaces --if-present coverage",
"start:dapp:dev": "npm run dev -w @ethernauts/dapp",
"start:dapp:staging": "npm run staging -w @ethernauts/dapp",
"start:dapp:production": "npm run production -w @ethernauts/dapp",
"start:keeper": "npm run start:keeper -w @ethernauts/hardhat",
"lint:js": "prettier --check '**/*.js' && eslint '**/*.js' && npm run lint -w @ethernauts/dapp",
"lint:js:fix": "prettier --write '**/*.js' && eslint --fix '**/*.js'",
"lint:sol": "prettier --check 'packages/hardhat/contracts/**/*.sol' && solhint 'packages/hardhat/contracts/**/*.sol'",
"lint:sol:fix": "prettier --write 'packages/hardhat/contracts/**/*.sol' && solhint --fix 'packages/hardhat/contracts/**/*.sol'",
"lint:fix": "npm run lint:js:fix && npm run lint:sol:fix",
"lint": "npm run lint:js && npm run lint:sol"
},
"devDependencies": {
"eslint": "7.32.0",
"ethers": "5.4.5",
"faker": "5.5.3",
"hardhat": "2.8.1",
"ipfs": "0.58.6",
"make-dir": "3.1.0",
"node-pnglib": "1.5.5",
"prettier": "2.3.2",
"prettier-plugin-solidity": "1.0.0-beta.17",
"prompt-confirm": "2.0.4",
"random": "3.0.6",
"random-color": "1.0.1",
"solhint": "3.3.6"
}
}