-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
106 lines (106 loc) · 3.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "mobx-state-router",
"description": "MobX powered router for React apps",
"version": "6.0.1",
"author": "Naresh Bhatia",
"license": "MIT",
"homepage": "https://github.com/nareshbhatia/mobx-state-router",
"repository": {
"type": "git",
"url": "https://github.com/nareshbhatia/mobx-state-router.git"
},
"keywords": [
"mobx",
"react",
"router"
],
"main": "dist/index.js",
"module": "dist/mobx-state-router.esm.js",
"types": "dist/index.d.ts",
"files": [
"src/",
"dist/"
],
"scripts": {
"build": "tsdx build",
"build:local": "yarn lint && yarn test:coverage && yarn build",
"cz-commit": "git-cz",
"format": "prettier --write *.md docs/*.md '{src,test}/**/*.ts*'",
"lint": "eslint '{src,test}/**/*.ts*'",
"prepare": "tsdx build",
"start": "tsdx watch",
"test": "tsdx test",
"test:watch": "tsdx test --watch",
"test:coverage": "tsdx test --coverage --no-cache"
},
"dependencies": {
"@react-force/utils": "^2.3.0",
"debug": "^4.3.3",
"history": "^4.10.1",
"path-to-regexp": "^6.2.0",
"query-string": "^7.0.1"
},
"peerDependencies": {
"mobx": ">=6",
"mobx-react-lite": ">=3",
"react": ">=16"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@react-force/eslint-config": "^1.0.3",
"@testing-library/dom": "^7.31.2",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "13.1.1",
"@types/debug": "^4.1.7",
"@types/history": "^4.7.9",
"@types/query-string": "^6.3.0",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"babel-eslint": "10.1.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-plugin-flowtype": "^5.10.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^3.10.2",
"husky": "^4.3.8",
"mobx": "^6.3.8",
"mobx-react-lite": "^3.2.2",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.5.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && tsdx lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
0
]
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=10"
}
}