-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.8 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.8 KB
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
{
"name": "library-api",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/electron",
"**/electron/**"
]
},
"repository": {
"type": "git",
"url": "https://github.com/BenShelton/library-api"
},
"scripts": {
"prepare": "husky install",
"bootstrap": "yarn install && lerna bootstrap && yarn build",
"build": "lerna run build --parallel",
"clean": "lerna clean -y",
"lint": "lerna run lint --parallel",
"lint:root": "eslint ./*.{js,ts}",
"test": "lerna run test --parallel",
"test:ci": "yarn lint:root && lerna run test:ci --parallel",
"tsc": "lerna run tsc --parallel",
"docs": "lerna run docs --parallel",
"core": "yarn workspace @library-api/core",
"express": "yarn workspace @library-api/express",
"media": "yarn workspace @library-api/media"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/jest": "^26.0.23",
"@types/node": "^14.15.4",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.29.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"gh-release": "^6.0.0",
"husky": "^6.0.0",
"jest": "^27.0.4",
"lerna": "^4.0.0",
"lint-staged": "^11.0.0",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"tsc-watch": "^4.4.0",
"typedoc": "^0.21.0",
"typedoc-plugin-markdown": "^3.10.0",
"typescript": "^4.3.4",
"vls": "^0.7.4"
},
"license": "MIT",
"engines": {
"node": "^14",
"yarn": "^1.22"
}
}