-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
88 lines (88 loc) · 2.58 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
{
"private": true,
"name": "ditox-root",
"version": "0.0.0",
"license": "MIT",
"author": "Mikhail Nasyrov <[email protected]> (https://github.com/mnasyrov)",
"description": "Dependency injection for modular web applications",
"keywords": [
"dependency container",
"dependency injection",
"typescript",
"javascript",
"npm",
"dependency",
"injection",
"container",
"module",
"ioc",
"di"
],
"homepage": "https://github.com/mnasyrov/ditox",
"bugs": "https://github.com/mnasyrov/ditox/issues",
"repository": {
"type": "git",
"url": "https://github.com/mnasyrov/ditox.git"
},
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"prepare": "husky install",
"clean": "npm run -ws clean && rm -rf build coverage docs/api dist",
"lint": "npm run lint:eslint && npm run lint:tsc",
"lint:eslint": "eslint \"packages/*/{src,test*}/**\"",
"lint:tsc": "tsc --noEmit --jsx react",
"test": "jest",
"build": "npm run -ws build",
"build-docs": "npm run build && typedoc",
"pack": "npm run build && mkdir -p dist && npm exec -ws -c 'npm pack --pack-destination ../../dist'",
"preversion": "npm run build && npm run lint && npm run test && git add --all",
"release-version": "lerna version --no-push",
"release-publish": "lerna publish from-git"
},
"devDependencies": {
"@rollup/plugin-terser": "0.2.1",
"@rollup/plugin-typescript": "10.0.1",
"@types/jest": "29.2.4",
"@typescript-eslint/eslint-plugin": "5.47.0",
"@typescript-eslint/parser": "5.47.0",
"eslint": "8.30.0",
"eslint-plugin-jest": "27.1.7",
"eslint-plugin-react-hooks": "4.6.0",
"fast-glob": "3.2.12",
"husky": "8.0.2",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"lerna": "6.1.0",
"lint-staged": "13.1.0",
"prettier": "2.8.1",
"rollup": "3.7.5",
"rollup-plugin-dts": "5.0.0",
"shx": "0.3.4",
"ts-jest": "29.0.3",
"typedoc": "0.23.28",
"typedoc-plugin-extras": "2.3.2",
"typedoc-plugin-replace-text": "2.1.0",
"typedoc-plugin-resolve-crossmodule-references": "0.3.3",
"typescript": "4.9.4"
},
"lint-staged": {
"{packages,scripts}/**/*.{ts,tsx}": [
"eslint --max-warnings 0 --fix",
"prettier --write"
],
"*.{css,json,md,html,yml}": [
"prettier --write"
]
},
"attributions": [
{
"lemon.svg": [
"Vincent Le Moign, CC BY 4.0 <https://creativecommons.org/licenses/by/4.0>, via Wikimedia Commons",
"https://commons.wikimedia.org/wiki/File:526-lemon.svg"
]
}
]
}