-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.35 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=16",
"yarn": "^1.19.0"
},
"scripts": {
"bootstrap": "lerna link && lerna bootstrap",
"build": "lerna run build",
"dev": "lerna run dev --scope \"@me3wallet/*\" --stream --parallel",
"prepare": "npm run bootstrap && npm run build",
"prerelease": "lerna exec yarn install --stream --scope \"@me3wallet/*\" -- && lerna run build --scope \"@me3wallet/*\"",
"serve": "lerna run --scope @me3wallet/keysmith --stream --parallel --scope @me3wallet/sample serve",
"lint": "eslint . --ext .ts --fix",
"test:keysmith": "lerna run test --scope @me3wallet/keysmith",
"playground": "lerna run --scope @me3wallet/keysmith playground"
},
"devDependencies": {
"@types/lodash": "^4.14.185",
"@types/node": "^18.7.8",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"lerna": "^6.1.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"lodash": "^4.17.21"
},
"resolutions": {
"sharp": "0.28.0"
}
}