-
Notifications
You must be signed in to change notification settings - Fork 128
/
package.json
38 lines (38 loc) · 1.09 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
{
"name": "safe-apps",
"private": true,
"engines": {
"node": ">=16.x"
},
"scripts": {
"start:test-app": "yarn workspace @safe-global/safe-apps-test-app start",
"build": "lerna run build --stream",
"build:sdk": "lerna run --scope @safe-global/safe-apps-sdk build --stream",
"test:sdk": "lerna run --scope @safe-global/safe-apps-sdk test --stream",
"release": "lerna run build && changeset publish",
"lint:check": "eslint './packages/**/*.{js,jsx,ts,tsx}'"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/jest": "^29.5.3",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"lerna": "^7.1.4",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}