-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
33 lines (33 loc) · 1 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
{
"name": "burner-wallet-2",
"description": "Robust, modular burner wallet",
"repository": "https://github.com/dmihal/burner-wallet-2.git",
"author": "David Mihal <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"install": "lerna bootstrap",
"build": "lerna run --ignore local-wallet --ignore basic-wallet build",
"build:esm": "lerna exec --stream --parallel -- ../../node_modules/.bin/tsc --outDir dist/esm --module esnext --target esnext",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"start-basic": "lerna run --parallel start-basic",
"start-local": "lerna run --parallel start-local"
},
"workspaces": [
"basic-wallet",
"exchange",
"local-wallet",
"packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"eslint": "^6.6.0",
"eslint-plugin-react": "^7.16.0",
"lerna": "^3.16.4",
"ts-node": "^8.5.2"
},
"dependencies": {
"typescript": "3.5.1"
}
}