-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.76 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
{
"name": "@daniely/routerx",
"version": "0.2.1",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"dev": "concurrently --group --raw \"tsc --noEmit --watch\" \"npm run ladle\" \"npm run test\"",
"typecheck": "tsc --noEmit",
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"ladle": "ladle serve"
},
"peerDependencies": {
"react": ">=16"
},
"author": "Daniel Yogel",
"devDependencies": {
"@babel/core": "^7.14.6",
"@size-limit/preset-small-lib": "^4.12.0",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.8",
"babel-loader": "^8.2.2",
"concurrently": "^7.6.0",
"husky": "^4.3.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"size-limit": "^4.9.1",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "4.3.5"
},
"dependencies": {
"@ladle/react": "^2.4.5",
"@types/lodash": "^4.14.171",
"fp-ts": "2.11",
"io-ts": "^2.2.16",
"lodash": "^4.17.21",
"mobx": "^6.3.2",
"mobx-react-lite": "^3.2.0",
"router5": "8.0.1",
"router5-plugin-browser": "8.0.1",
"ts-toolbelt": "9.6.0",
"tsd": "^0.17.0",
"type-fest": "2.1.0"
},
"description": "MobX Declerative Router",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielyogel/routerX.git"
},
"bugs": {
"url": "https://github.com/danielyogel/routerX/issues"
},
"homepage": "https://github.com/danielyogel/routerX#readme"
}