-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
52 lines (52 loc) · 1.17 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
{
"name": "xstate-router",
"version": "0.4.3",
"description": "XState Router. Add routes to your XState machine.",
"main": "lib/index.js",
"files": [
"lib/"
],
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "tsc",
"build:watch": "tsc --watch",
"playground": "parcel playground/index.html"
},
"peerDependencies": {
"@xstate/react": "^0.8.1",
"react": "^16.12.0",
"xstate": "^4.7.6"
},
"devDependencies": {
"@testing-library/react": "^9.4.0",
"@types/jest": "^24.9.0",
"@types/react": "^16.9.18",
"jest": "^24.8.0",
"parcel-bundler": "^1.12.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"ts-jest": "^24.3.0",
"typescript": "^3.7.5",
"xstate": "^4.7.6"
},
"keywords": [
"xstate",
"react",
"router",
"statecharts",
"state-machines",
"javascript"
],
"repository": "carloslfu/xstate-react-router",
"author": "@carloslfu",
"license": "MIT",
"dependencies": {
"@xstate/graph": "^1.0.0",
"@xstate/react": "^0.8.1",
"history": "^4.10.1",
"path-to-regexp": "^6.1.0"
}
}