-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
41 lines (41 loc) · 980 Bytes
/
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
{
"name": "react-router-async",
"version": "0.7.11",
"author": {
"name": "Oleg Martynov",
"email": "olegman.ru@gmail.com"
},
"contributors": [
"Aleksey Novikov <lamo2k123@gmail.com>"
],
"bugs": {
"url": "https://github.com/router-async/react-router-async/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/router-async/react-router-async.git"
},
"license": "MIT",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"clean": "rm -rf lib",
"watch": "yarn clean && tsc -p . --watch",
"transpile": "yarn clean && tsc -p .",
"build": "yarn clean && tsc --outDir ./ -p .",
"tsc": "tsc"
},
"devDependencies": {
"@types/react": "16.x.x",
"@types/serialize-javascript": "1.x.x",
"typescript": "2.x.x"
},
"peerDependencies": {
"react": "16.x.x"
},
"dependencies": {
"prop-types": "15.x.x",
"router-async": "0.5.x",
"serialize-javascript": "1.x.x"
}
}