-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 834 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 834 Bytes
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
{
"name": "minabootcamp",
"version": "0.1.4",
"description": "",
"author": "",
"license": "Apache-2.0",
"keywords": [],
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"type": "module",
"scripts": {
"test": "jest",
"testw": "jest --watch",
"coverage": "jest --coverage",
"build": "tsc -p tsconfig.json",
"prepare": "husky install",
"format": "prettier --write --ignore-unknown **/*"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^11.0.1",
"prettier": "^2.3.2",
"snarkyjs": "^0.1.11",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
},
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"ipfs-http-client": "^54.0.2"
}
}