forked from willyandor/meta-storage-koa-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.87 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
{
"name": "@metaio/meta-storage-koa-gateway",
"version": "0.0.1",
"description": "Storage gateway for Meta Network (Koa Implemention)",
"main": "src/index.js",
"scripts": {
"start": "cross-env node src/index.js",
"start:dev": "cross-env NODE_ENV=dev nodemon --inspect src/index.js",
"start:prod": "cross-env NODE_ENV=prod node src/index.js",
"format": "prettier --write \"src/**/*.js\" \"test/**/*.js\"",
"test": "cross-env NODE_ENV=test jest --runInBand --forceExit",
"test:watch": "cross-env NODE_ENV=test jest --runInBand --forceExit --watch",
"test:cov": "cross-env NODE_ENV=test jest --runInBand --forceExit --coverage",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/willyandor/meta-storage-koa-gateway.git"
},
"keywords": [
"Meta Network",
"Fleek"
],
"author": "Andoroyur",
"license": "MIT",
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"husky": ">=6",
"jest": "^27.0.6",
"lint-staged": ">=10",
"nodemon": "^2.0.12",
"prettier": "^2.3.2"
},
"dependencies": {
"-": "^0.0.1",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@fleekhq/fleek-storage-js": "^1.0.17",
"@koa/cors": "^3.1.0",
"@koa/multer": "^3.0.0",
"@koa/router": "^10.1.1",
"D": "^1.0.0",
"dotenv": "^10.0.0",
"han": "^0.0.7",
"ipfs-core": "^0.10.4",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-cookie": "^1.0.0",
"koa-helmet": "^6.1.0",
"koa-passport": "^4.1.4",
"koa-static": "^5.0.0",
"multer": "^1.4.3",
"require-all": "^3.0.0",
"winston": "^3.3.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}