forked from hirosystems/connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.63 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
72
73
74
75
76
{
"name": "root",
"private": true,
"scripts": {
"bootstrap": "lerna exec --parallel 'yarn'",
"build": "lerna run build",
"build:connect": "lerna run build --scope @stacks/connect",
"build:connect-ui": "lerna run build --scope @stacks/connect-ui",
"build:docs": "typedoc && mkdir -p docs/.github && cp -r .github/img docs/.github/img",
"typecheck": "lerna run typecheck --parallel --no-bail --stream",
"types": "lerna run types",
"types:connect": "lerna run types --scope @stacks/connect",
"types:connect-react": "lerna run types --scope @stacks/connect-react",
"deploy-contracts": "lerna run deploy-contracts --stream",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint \"packages/**/src/**/*.{ts,tsx}\"",
"lint:eslint:fix": "eslint \"packages/**/src/**/*.{ts,tsx}\" --fix",
"lint:prettier": "prettier --check \"packages/**/src/**/*.{ts,tsx}\" *.js",
"lint:prettier:fix": "prettier --write \"packages/**/src/**/*.{ts,tsx}\" *.js",
"postinstall": "patch-package && yarn build:connect-ui",
"prepare": "husky install"
},
"prettier": "@stacks/prettier-config",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@changesets/changelog-github": "^0.3.0",
"@changesets/cli": "^2.14.1",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@commitlint/config-lerna-scopes": "^12.0.1",
"@stacks/eslint-config": "^1.0.7",
"@stacks/prettier-config": "^0.0.7",
"@typescript-eslint/eslint-plugin": "4.18.0",
"@typescript-eslint/parser": "4.18.0",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^5.1.3",
"lerna": "^3.22.1",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsdx": "^0.14.1",
"typedoc": "^0.23.19",
"typescript": "^4.8.4",
"yalc": "^1.0.0-pre.50"
},
"dependencies": {
"@janniks/typedoc-theme-stacks": "1.2.3",
"is-regex": "^1.1.2",
"jsx-ast-utils": "^3.2.0"
},
"resolutions": {
"tsdx": "^0.14.1"
}
}