-
Notifications
You must be signed in to change notification settings - Fork 203
/
package.json
64 lines (64 loc) · 2.03 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
{
"private": true,
"name": "messaging-apis",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Yoctol/messaging-apis.git"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "git clean -dfqX -- ./node_modules **/{dist,node_modules}/ ./packages/*/tsconfig*tsbuildinfo",
"compile": "tsc --build tsconfig.build.json",
"compile:clean": "tsc --build tsconfig.build.json --clean",
"postinstall": "lerna run prepare && yarn compile",
"lint": "eslint packages examples --ext=js,ts",
"lint:fix": "yarn lint:fix:md && yarn lint --fix",
"lint:fix:md": "prettier --write **/*.md",
"lint:staged": "lint-staged",
"prepare": "husky install",
"publish": "lerna publish",
"prepublishOnly": "yarn clean && yarn && yarn test",
"test": "yarn compile && yarn lint && yarn testonly",
"testonly": "jest",
"testonly:cov": "jest --coverage",
"testonly:watch": "jest --watch",
"typedoc": "typedoc --entryPointStrategy packages .",
"watch": "tsc --build tsconfig.build.json --watch"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/jest": "^26.0.10",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"axios": "^0.21.4",
"axios-mock-adapter": "^1.20.0",
"chalk": "^4.1.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-yoctol-base": "^0.24.1",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-tsdoc": "^0.2.14",
"husky": "^7.0.2",
"jest": "^26.4.0",
"lerna": "^4.0.0",
"lint-staged": "^11.1.2",
"micromatch": "^4.0.4",
"mkdir": "^0.0.2",
"msw": "^0.35.0",
"prettier": "^2.4.0",
"prettier-package-json": "^2.6.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.2.0",
"typedoc": "^0.22.3",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=10"
}
}