-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.29 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
{
"name": "@aragonone/ipfs-pinner-worker",
"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: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": {
"@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",
"@aragonone/ipfs-pinner-shared": "^1.0.1"
}
}