-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1.5 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
{
"name": "nft4charity",
"version": "1.0.0",
"description": "",
"author": "[email protected]",
"private": true,
"license": "MIT",
"scripts": {
"install:all": "yarn install && concurrently \"yarn --cwd backend install\"",
"format:all": "concurrently \"yarn --cwd backend format\"",
"format:check:all": "concurrently \"yarn --cwd backend format:check\"",
"lint:all": "concurrently \"yarn --cwd backend lint\"",
"lint:check:all": "concurrently \"yarn --cwd backend lint:check\"",
"pretty:all": "concurrently \"yarn --cwd backend pretty\"",
"pretty:check:all": "concurrently \"yarn --cwd backend pretty:check\"",
"typecheck": "concurrently \"yarn --cwd backend tsc\"",
"postinstall": "husky install",
"preinstall": "npx only-allow yarn",
"lint:commit": "commitlint --from=HEAD~1"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"autoprefixer": "^10.3.7",
"concurrently": "^6.2.0",
"husky": "^7.0.1",
"lint-staged": "^11.0.1",
"prettier": "2.4.1"
},
"lint-staged": {
"backend/**/!(.eslintrc).{js,ts}": [
"yarn --cwd backend prettier",
"yarn --cwd backend eslint"
],
"backend/**/*.{json,md}": "yarn --cwd backend prettier"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.7",
"hardhat": "^2.6.5",
"ipfs-http-client": "50.1.2",
"web3modal": "^1.9.4"
}
}