-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
53 lines (53 loc) · 1.59 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
45
46
47
48
49
50
51
52
53
{
"name": "adena-wallet",
"version": "1.13.3",
"description": "Adena Wallet",
"license": "Adena License",
"private": true,
"scripts": {
"setup": "yarn install && yarn allow-scripts",
"develop": "yarn workspace adena-extension build:dev",
"build": "yarn build:module && yarn build:service && yarn",
"build:module": "yarn workspaces foreach -ptR --from '{adena-module,adena-torus-signin}' run build",
"build:service": "yarn workspace adena-extension build",
"version:qa": "sh scripts/update-build-version.sh",
"version:package": "sh scripts/update-package-version.sh",
"tag": "sh scripts/create-tag.sh",
"test": "jest --passWithNoTests"
},
"resolutions": {
"@storybook/react-docgen-typescript-plugin": "npm:[email protected]"
},
"devDependencies": {
"@babel/core": "7.23.9",
"@babel/runtime": "7.23.9",
"@lavamoat/allow-scripts": "^3.0.3",
"@lavamoat/preinstall-always-fail": "^2.0.0",
"@storybook/react": "^7.6.17",
"@yarnpkg/sdks": "3.1.0",
"babel-loader": "9.1.3",
"eslint": "8.56.0",
"file-loader": "^6.2.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "4.9.5"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"git add"
]
},
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false,
"@storybook/react>@storybook/docs-tools>@storybook/core-common>esbuild": false
}
}
}