-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
73 lines (73 loc) · 1.75 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
{
"name": "mobx-router",
"version": "1.0.0",
"description": "A simple router for MobX",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/",
"src/",
"test/",
"LICENSE",
"README.md"
],
"scripts": {
"lint": "eslint . --ext .ts,.tsx --ignore-path .gitignore",
"test": "jest",
"build": "del-cli dist && tsc",
"format": "prettier --print-width 80 --tab-width 4 --single-quote --write {src,tests}/**/*.{ts,tsx}",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kitze/mobx-router.git"
},
"keywords": [
"kitze",
"mobx",
"router",
"react"
],
"author": "Kitze <[email protected]> (http://kitze.rocks/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/kitze/mobx-router/issues"
},
"homepage": "https://github.com/kitze/mobx-router#readme",
"dependencies": {
"director": "1.2.8",
"query-string": "^6.13.1"
},
"peerDependencies": {
"mobx": "^6.x",
"mobx-react-lite": "^3.x",
"react": ">= 16.8"
},
"devDependencies": {
"@testing-library/react": "^10.0.3",
"@types/enzyme": "^3.10.5",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"del-cli": "^1.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^0.14.3",
"jest": "^25.4.0",
"lint-staged": "^6.0.0",
"mobx": "^6.3.3",
"mobx-react-lite": "^3.2.1",
"prettier": "^2.4.1",
"raf": "^3.4.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
},
"lint-staged": {
"*.{ts, tsx}": [
"npm run format",
"git add"
]
}
}