forked from safe-global/safe-apps-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 886 Bytes
/
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
{
"name": "safe-apps",
"private": true,
"engines": {
"node": ">=16.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/*",
"examples/*"
]
},
"devDependencies": {
"@changesets/cli": "^2.24.4",
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "29.0.3",
"jest-environment-jsdom": "^29.0.3",
"lerna": "^5.5.2",
"prettier": "^2.7.1",
"ts-jest": "^29.0.1",
"typescript": "^4.8.3"
}
}