forked from leather-io/extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.5 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "root",
"private": true,
"scripts": {
"typecheck": "lerna run typecheck --parallel --no-bail --stream",
"dev": "NODE_ENV=development yarn lerna exec --parallel 'yarn dev' --scope test-app --scope @stacks/app",
"bootstrap": "yarn lerna exec --parallel 'yarn'",
"build:libs": "yarn build:ui && yarn build:keychain && yarn build:connect",
"build:keychain": "lerna run build --scope @stacks/keychain",
"build:connect": "lerna run build --scope @stacks/connect",
"build:connect-ui": "lerna run build --scope @stacks/connect-ui",
"build:app": "yarn build:connect-ui && lerna run prod:web --scope @stacks/app",
"build:test-app": "lerna run prod:web --scope test-app",
"build:extension": "lerna run prod:ext",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint \"packages/**/src/**/*.{ts,tsx}\" -f unix",
"lint:fix": "eslint \"packages/**/src/**/*.{ts,tsx}\" -f unix --fix",
"lint:prettier": "prettier --check \"packages/**/src/**/*.{ts,tsx}\" *.js",
"lint:prettier:fix": "prettier --write \"packages/**/src/**/*.{ts,tsx}\" *.js",
"postinstall": "yarn build:connect-ui"
},
"prettier": "@blockstack/prettier-config",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@blockstack/eslint-config": "^1.0.5",
"@blockstack/prettier-config": "^0.0.6",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@commitlint/config-lerna-scopes": "^8.3.4",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.21.2 ",
"eslint-plugin-jest": "^23.11.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^3.0.0",
"husky": "^4.2.3",
"lerna": "^3.22.1",
"prettier": "^2.0.5",
"typescript": "^3.9.3",
"web-ext": "^5.4.1",
"yalc": "^1.0.0-pre.42"
},
"dependencies": {
"@babel/preset-env": "^7.10.3",
"tsdx": "^0.13.2"
},
"resolutions": {
"@blockstack/eslint-config": "^1.0.5",
"eslint-plugin-import": "2.21.2",
"@blockstack/prettier-config": "^0.0.6",
"buffer": "5.6.0",
"typescript": "3.9.3",
"@types/node": "12.7.12"
},
"webExt": {
"sourceDir": "packages/app/dist/"
}
}