-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 2.12 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
{
"private": true,
"name": "rx-effects-root",
"version": "0.0.1",
"license": "MIT",
"author": "Mikhail Nasyrov (https://github.com/mnasyrov)",
"homepage": "https://github.com/mnasyrov/rx-effects",
"bugs": {
"url": "https://github.com/mnasyrov/rx-effects/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mnasyrov/rx-effects.git"
},
"type": "module",
"scripts": {
"postinstall": "lerna bootstrap",
"clean": "rm -rf dist && lerna run clean",
"lint": "npm run lint:eslint && npm run lint:tsc",
"lint:eslint": "eslint \"packages/*/{src,test*}/**\"",
"lint:tsc": "tsc --noEmit --jsx react",
"test": "jest",
"build": "lerna run build",
"docs": "node scripts/docs.js",
"preversion": "npm run build && npm run lint && npm run test && npm run docs && git add --all",
"prepare": "husky install",
"prepublishOnly": "npm run clean && npm run build",
"lerna-version": "lerna version",
"lerna-publish": "lerna publish from-git",
"pack": "npm run build && mkdir -p dist && npx lerna exec 'npm pack --pack-destination ../../dist'"
},
"devDependencies": {
"@types/jest": "29.2.4",
"@types/shelljs": "0.8.11",
"@typescript-eslint/eslint-plugin": "5.46.0",
"@typescript-eslint/parser": "5.46.0",
"ditox": "2.2.0",
"ditox-react": "2.2.0",
"eslint": "8.29.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.6",
"eslint-plugin-react-hooks": "4.6.0",
"fast-glob": "3.2.12",
"husky": "8.0.2",
"jest": "29.3.1",
"lerna": "6.1.0",
"lint-staged": "13.1.0",
"markdown-toc": "1.2.0",
"prettier": "2.8.1",
"rxjs": "7.6.0",
"shelljs": "0.8.5",
"ts-jest": "29.0.3",
"typedoc": "0.23.21",
"typedoc-plugin-markdown": "3.14.0",
"typescript": "4.9.4"
},
"attributions": [
{
"rocket.svg": [
"Creative Tail, CC BY 4.0 <https://creativecommons.org/licenses/by/4.0>, via Wikimedia Commons",
"https://commons.wikimedia.org/wiki/File:Creative-Tail-rocket.svg"
]
}
]
}