forked from safe-global/safe-apps-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "safe-apps",
"private": true,
"engines": {
"node": ">=12.x"
},
"scripts": {
"build:sdk": "lerna run --scope @gnosis.pm/safe-apps-sdk build --stream",
"test:sdk": "lerna run --scope @gnosis.pm/safe-apps-sdk test --stream",
"release": "lerna run build && changeset publish"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@changesets/cli": "^2.20.0",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"lerna": "^4.0.0",
"jest": "27.4.7",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"resolutions": {
"lerna/tar": "^6.1.9",
"lerna/**/trim-newlines": "^3.0.0",
"lerna/node-fetch": "^2.6.0",
"lerna/**/json-schema": "^0.4.0",
"lerna/shelljs": "^0.8.0",
"lerna/trim-off-newlines": "^1.0.3",
"lerna/**/ansi-regex": "^5.0.1"
}
}