-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.99 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
{
"name": "@aragonone/ipfs-pinner-server",
"version": "1.0.1",
"license": "GPL-3.0-or-later",
"scripts": {
"lint": "eslint src/** --ext .ts",
"test": "jest",
"build": "yarn lint && yarn check-types && yarn build:js",
"build:js": "babel ./src --out-dir ./build --extensions .ts --root-mode upward",
"build:client": "lerna run build --scope '*/*-client' --stream",
"build:shared": "lerna run build --scope '*/*-shared' --stream",
"build:clean": "yarn clean && yarn build",
"clean": "rm -rf ./build",
"check-types": "tsc",
"start": "yarn db:setup && node ./build/index.js",
"start:dev": "yarn db:setup && nodemon --exec 'babel-node --extensions .ts --root-mode upward' ./src/index.ts",
"db:setup": "lerna run db:setup --scope '*/*-shared' --stream"
},
"dependencies": {
"@aragonone/ipfs-pinner-client": "^1.0.0",
"@aragonone/ipfs-pinner-shared": "^1.0.1",
"@koa/cors": "^3.1.0",
"@koa/multer": "^3.0.0",
"@koa/router": "^9.0.1",
"dotenv": "^8.2.0",
"ethers": "^5.0.7",
"http-status-codes": "^1.4.0",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-helmet": "^5.2.0",
"koa-logger": "^3.2.1",
"multer": "^1.4.2"
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/node": "^7.10.3",
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
"@babel/preset-env": "^7.10.3",
"@babel/preset-typescript": "^7.10.1",
"@types/jest": "^26.0.3",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"eslint": "^7.3.1",
"jest": "^26.1.0",
"lerna": "^3.22.1",
"nodemon": "^2.0.4",
"typescript": "^3.9.5",
"@types/koa": "^2.11.3",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-helmet": "^5.2.0",
"@types/koa-logger": "^3.1.1",
"@types/koa__cors": "^3.0.1",
"@types/koa__multer": "^2.0.1",
"@types/koa__router": "^8.0.2",
"@types/multer": "^1.4.3"
}
}