-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.84 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
{
"workspaces": {
"packages": [
"packages/**"
]
},
"name": "qubic-js-sdk",
"scripts": {
"build": "lerna run build",
"docs": "docsify serve ./docs",
"build:example": "yarn build && yarn --cwd ./example && yarn --cwd ./example build",
"example:dev": "yarn --cwd ./example start:dev",
"example:stag": "yarn --cwd ./example start:stag",
"example:prod": "yarn --cwd ./example start:prod",
"prepublishOnly": "yarn run build",
"prerelease": "lerna run clean",
"release": "lerna publish --force-publish",
"test": "jest",
"lint:tsc": "yarn workspace @qubic-js/core tsc && yarn workspace @qubic-js/browser tsc && yarn workspace @qubic-js/react tsc"
},
"engines": {
"node": ">=8"
},
"jest": {
"testTimeout": 50000,
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"reporters": [
"default"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && tsc"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write --parser typescript",
"git add",
"eslint --cache"
]
},
"dependencies": {
"docsify-cli": "^4.4.4",
"lerna": "5.1.8"
},
"devDependencies": {
"@types/node": "^12.11.5",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.8",
"lint-staged": "^10.2.11",
"prettier": "3.0.2"
},
"resolutions": {
"elliptic": "^6.5.7",
"ws": "^7.5.10"
},
"private": true
}