forked from router5/router5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.25 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
{
"name": "router5",
"private": true,
"description": "A simple, powerful, view-agnostic, modular and extensible router",
"scripts": {
"build": "rollup -c rollup.config.js",
"postbuild": "cp -f README.md ./packages/router5/README.md",
"test": "jest",
"lint": "eslint packages/*/modules --ext ts,tsx",
"format": "prettier 'packages/**/*.{js,ts,json}'",
"changelog": "lerna-changelog",
"release": "lerna publish"
},
"lint-staged": {
"packages/**/*.{js,ts}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/router5/router5.git"
},
"keywords": [
"router",
"routing",
"html5",
"functional",
"reactive",
"universal",
"isomorphic"
],
"author": "Thomas Roch",
"license": "MIT",
"bugs": {
"url": "https://github.com/router5/router5/issues"
},
"homepage": "https://router5.js.org",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"@rollup/plugin-commonjs": "~11.0.0",
"@rollup/plugin-node-resolve": "~6.0.0",
"@types/jest": "~24.0.25",
"@types/react": "~16.9.23",
"conventional-changelog": "~3.1.18",
"enzyme": "~3.11.0",
"enzyme-adapter-react-16": "~1.7.0",
"eslint": "~6.8.0",
"eslint-config-prettier": "~6.9.0",
"eslint-plugin-import": "~2.19.1",
"eslint-plugin-react": "~7.17.0",
"eslint-plugin-react-hooks": "~2.3.0",
"express": "~4.17.1",
"husky": "~3.1.0",
"jest": "~24.9.0",
"lerna": "^3.19.0",
"lerna-changelog": "~1.0.0",
"lint-staged": "~9.5.0",
"most": "~1.7.3",
"prettier": "~1.19.1",
"react": "~16.12.0",
"react-addons-test-utils": "~15.6.2",
"react-dom": "~16.12.0",
"rollup": "~1.27.14",
"rollup-plugin-typescript2": "~0.25.3",
"rollup-plugin-uglify": "~6.0.4",
"rxjs": "~6.5.3",
"ts-jest": "~24.2.0",
"typescript": "~3.7.4",
"webpack": "~4.41.4",
"webpack-dev-middleware": "~3.7.2",
"webpack-dev-server": "~3.10.1",
"xstream": "~11.11.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"workspaces": {
"packages": [
"packages/*",
"examples/*",
"unmaintained/*"
]
}
}