forked from Portkey-Wallet/portkey-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.37 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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/react-native",
"**/react-native/**",
"**/react-native-**",
"**/@react-native-**",
"**/@react-native-**/**",
"**/expo-**",
"**/@sentry/**"
]
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"clean": "lerna clean --yes",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepare": "husky install",
"reset-modules": "rm -rf node_modules/ yarn.lock packages/*/node_modules",
"common-package:extension": "npx lerna add @portkey-wallet/utils --scope=web-extension && npx lerna add @portkey-wallet/hooks --scope=web-extension && npx lerna add @portkey-wallet/store --scope=web-extension && npx lerna add @portkey-wallet/constants --scope=web-extension",
"app:did": "yarn workspace mobile-did run",
"extension:did": "yarn workspace web-extension-did run",
"extension-did:dev": "yarn extension:did dev:watch",
"graphql": "yarn workspace @portkey-wallet/graphql run",
"page": "yarn workspace web-page run"
},
"devDependencies": {
"eslint": "^8.23.1",
"eslint-plugin-react": "^7.31.8",
"husky": "^8.0.1",
"lerna": "^5.5.2",
"lint-staged": ">=13"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
},
"version": "1.0.0"
}