forked from Lomray-Software/react-mobx-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.04 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
{
"name": "@lomray/react-mobx-manager",
"version": "1.0.0",
"description": "This package provides Mobx stores manager for react.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Lomray-Software/react-mobx-manager"
},
"keywords": [
"react",
"types",
"typescript",
"lomray",
"javascript",
"mobx",
"store",
"manager",
"stores",
"state"
],
"publishConfig": {
"access": "public"
},
"author": "Mikhail Yarmaliuk",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lomray-Software/react-mobx-manager/issues"
},
"homepage": "https://github.com/Lomray-Software/react-mobx-manager",
"scripts": {
"build": "rollup -c",
"build:dev": "rollup -c --environment BUILD:development",
"build:watch": "rollup -c -w --environment BUILD:development",
"lint:check": "eslint --ext \".ts,.tsx\" \"src/**/*.{ts,tsx,*.ts,*tsx}\"",
"lint:format": "eslint --fix --ext \".ts,.tsx\" \"src/**/*.{ts,tsx,*.ts,*tsx}\"",
"ts:check": "tsc --project ./tsconfig.checks.json --skipLibCheck --noemit",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@lomray/eslint-config-react": "^2.0.0",
"@lomray/prettier-config": "^1.2.0",
"@rollup/plugin-terser": "^0.3.0",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/react": "^18.0.15",
"eslint": "8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"rollup": "^2.79.1",
"rollup-plugin-ts": "^3.0.2",
"semantic-release": "^19.0.5",
"ttypescript": "^1.5.15",
"typescript": "^4.7.4"
},
"peerDependencies": {
"hoist-non-react-statics": "^3.3.2",
"mobx": "^6.6.2",
"mobx-react-lite": "^3.4.0",
"react": "^18 || ^17"
},
"dependencies": {
"@lomray/event-manager": "^1.2.1"
}
}