forked from InjectiveLabs/injective-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.08 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
82
83
84
85
86
87
88
89
90
{
"name": "@injectivelabs/injective-ts",
"version": "0.0.1",
"main": "index.js",
"private": "true",
"license": "Apache-2.0",
"author": "@InjectiveLabs",
"repository": "https://github.com/InjectiveLabs/injective-ts",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build": "lerna run --parallel build",
"build:docs": "yarn typedoc",
"lerna:publish:prepatch": "lerna publish prepatch",
"lerna:publish": "lerna publish patch",
"build:watch": "lerna run --parallel build:watch",
"build:fresh": "yarn clean && yarn build",
"build:publish": "yarn build:fresh && yarn lerna:publish",
"build:publish:prepatch": "yarn build:fresh && yarn lerna:publish:prepatch",
"build:patch:publish": "yarn build:fresh && yarn patch && yarn lerna:publish",
"patch": "lerna version patch",
"clean": "lerna run --parallel clean && shx rm -rf .build-cache *.log coverage junit.xml",
"test": "jest",
"test:ci": "jest --coverage --ci --reporters='jest-junit'",
"test:unit": "jest packages/*/test/unit",
"test:integration": "jest packages/*/test/integration",
"coverage": "jest --coverage",
"coverage:unit": "yarn test:unit --coverage",
"coverage:integration": "yarn test:integration --coverage",
"coverage:show": "live-server coverage",
"lint": "eslint -c './.eslintrc.js' './packages/**/*.{ts,js}'",
"lint:ci": "yarn lint . --format junit",
"lint:md": "markdownlint --ignore node_modules --ignore .git",
"format": "yarn lint --fix",
"format:md": "yarn lint:md --fix",
"husky-skip": "cross-env HUSKY_SKIP_HOOKS=1",
"commit": "git cz"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,d.ts}": [
"eslint --fix"
],
"*.md": [
"yarn format:md"
]
},
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.20.7",
"@babel/preset-env": "^7.19.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.2",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"babel-jest": "^29.0.3",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^28.1.3",
"jest-junit": "^14.0.0",
"lerna": "^4.0.0",
"lint-staged": "^11.1.2",
"live-server": "^1.2.1",
"markdownlint-cli": "^0.28.1",
"prettier": "^2.4.1",
"serve": "^12.0.1",
"ts-jest": "^28.0.7",
"ts-node-dev": "^1.1.8",
"tsc-alias": "^1.7.0",
"tsconfig-paths": "^3.11.0",
"typedoc": "^0.22.1",
"typedoc-monorepo-link-types": "^0.0.4",
"typescript": "^4.4.3"
}
}