-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
81 lines (81 loc) · 2.81 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
77
78
79
80
81
{
"scripts": {
"start": "yarn build && concurrently --raw -k \"yarn workspaces foreach -i --include @quill/quill run start\" \"yarn watch\"",
"package": "yarn build && yarn workspaces foreach -i --include @quill/quill run package",
"make": "yarn build && yarn workspaces foreach -i --include @quill/quill run make",
"publish": "yarn build && yarn workspaces foreach -i --include @quill/quill run publish",
"build": "yarn workspaces foreach -i run build",
"watch": "yarn workspaces foreach -i run watch",
"lint": "yarn lint:types && yarn lint:source && yarn lint:format && yarn lint:styles",
"lint:types": "yarn workspaces foreach -pt run lint:types",
"lint:source": "yarn workspaces foreach -pt run lint:source",
"lint:source:fix": "yarn workspaces foreach -pt run lint:source:fix",
"lint:format": "prettier --check --ignore-path .gitignore \"**/*.{js,jsx,ts,tsx,json,yml,html}\"",
"lint:styles": "stylelint packages/**/*.tsx",
"format": "prettier --ignore-path .gitignore --write \"**/*.{js,jsx,ts,tsx,json,yml,html}\"",
"tsc": "tsc --noEmit",
"test": "jest",
"test:coverage": "yarn test --coverage"
},
"repository": "https://github.com/MyCryptoHQ/quill.git",
"author": "MyCryptoHQ",
"license": "MIT",
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix",
"yarn lint:styles"
],
"*.{json,yml,html}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn lint:types",
"pre-push": "yarn test"
}
},
"resolutions": {
"node-abi": "3.5.0",
"npmlog": "6.0.0"
},
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "7.11.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.13.8",
"@babel/plugin-proposal-optional-chaining": "7.13.12",
"@babel/preset-env": "7.11.5",
"@babel/preset-react": "7.13.13",
"@babel/preset-typescript": "7.10.4",
"@types/jest": "26.0.23",
"@typescript-eslint/eslint-plugin": "4.1.0",
"@typescript-eslint/parser": "4.1.0",
"babel-jest": "26.3.0",
"concurrently": "6.2.0",
"cross-env": "7.0.3",
"eslint": "7.6.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "24.0.2",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.21.2",
"eslint-plugin-react-hooks": "4.1.2",
"husky": "4.2.5",
"jest": "27.0.4",
"jest-mock-random": "1.1.1",
"lint-staged": "11.0.0",
"prettier": "2.1.1",
"stylelint": "13.13.1",
"stylelint-config-recommended": "3.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.10.0",
"typescript": "4.0.2"
},
"dependencies": {
"@ethersproject/abi": "^5.3.1"
}
}