-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 2.06 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
{
"name": "@tshio/node-common",
"version": "3.0.2",
"private": true,
"description": "",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"docs": "lerna run docs",
"bootstrap": "./node_modules/.bin/lerna clean -y && ./node_modules/.bin/lerna bootstrap --hoist",
"build": "./node_modules/.bin/lerna run build",
"generate-types": "./node_modules/.bin/lerna run generate-types",
"generate-api-doc": "lerna run generate-api-doc",
"publish": "lerna publish from-package --yes",
"unit": "./node_modules/.bin/lerna run units",
"integration": "lerna run integration",
"add": "./node_modules/.bin/lerna add --exact",
"lint": "./node_modules/.bin/eslint -c ./eslint.json --ext .ts ./",
"watch": "rm -rf ./build/* && ./node_modules/.bin/tsc -w --pretty --skipLibCheck",
"clean": "lerna run clean",
"pub": "lerna publish",
"format": "prettier --write \"**/**/*.ts\""
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "9.1.0",
"@types/node": "17.0.21",
"@typescript-eslint/eslint-plugin": "5.13.0",
"@typescript-eslint/parser": "5.13.0",
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"eslint": "8.10.0",
"eslint-config-airbnb-typescript": "16.1.0",
"eslint-config-prettier": "8.4.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-unicorn": "41.0.0",
"jsdoc-to-markdown": "7.1.1",
"lerna": "4.0.0",
"mocha": "9.2.1",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"ts-node": "10.5.0",
"tsconfig-paths": "~3.12.0",
"typedoc": "0.22.12",
"typedoc-plugin-markdown": "3.11.14",
"typescript": "4.5.5",
"uuid": "8.3.2"
},
"dependencies": {
"@tshio/awilix-resolver": "file:packages/awilix-resolver",
"@tshio/command-bus": "file:packages/command-bus",
"@tshio/event-dispatcher": "file:packages/event-dispatcher",
"@tshio/logger": "file:packages/logger",
"@tshio/query-bus": "file:packages/query-bus"
}
}