-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.77 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
{
"name": "altheajs",
"version": "1.0.2",
"main": "index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"author": "Christian Borst <[email protected]>",
"repository": "https://github.com/althea-net/altheajs",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"compileproto": "bash scripts/create-proto-files.sh",
"build": "lerna run --parallel build",
"lerna:publish": "lerna publish from-package",
"build:watch": "lerna run --parallel build:watch",
"build:fresh": "yarn clean && yarn build",
"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": "NODE_OPTIONS=--experimental-vm-modules 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",
"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",
"commit": "git cz",
"lerna": "lerna",
"prepare": ""
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.md": [
"yarn format:md"
]
},
"devDependencies": {
"@bufbuild/buf": "^1.25.0",
"@bufbuild/protoc-gen-es": "^1.3.0",
"@commitlint/cli": "^16.2.0",
"@commitlint/config-conventional": "^16.2.1",
"@types/jest": "^27.0.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"cross-env": "^7.0.3",
"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.27.5",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.4.1",
"jest-junit": "^13.0.0",
"lerna": "^5.6.2",
"link-module-alias": "^1.2.0",
"lint-staged": "^11.1.2",
"markdownlint-cli": "^0.31.1",
"prettier": "^2.4.1",
"protoc": "^1.1.3",
"shx": "^0.3.4",
"ts-jest": "^29.0.5",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@bufbuild/protobuf": "^1.3.0"
}
}