This repository has been archived by the owner on Sep 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.45 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
{
"name": "xstate.tips",
"description": "Examples from real life that help you master state machines and statecharts",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"next:build": "next build",
"build": "run-s feed next:build",
"start": "next start",
"static": "next export",
"feed": "node scripts/rss.js",
"new-tip": "node scripts/newTip.js"
},
"dependencies": {
"@mdx-js/loader": "^1.6.16",
"@next/mdx": "^9.5.2",
"@reach/tabs": "^0.11.2",
"@xstate/graph": "^1.1.0",
"@xstate/immer": "^0.1.0",
"@xstate/inspect": "^0.1.1",
"@xstate/react": "^0.8.1",
"classnames": "^2.2.6",
"codemirror": "^5.58.1",
"immer": "^7.0.14",
"next": "9.5.4",
"npm-run-all": "^4.1.5",
"nprogress": "^0.2.0",
"prettier": "^2.1.2",
"prism-react-renderer": "^1.1.1",
"react": "16.13.1",
"react-codemirror2": "^7.2.1",
"react-dom": "16.13.1",
"react-markdown": "^4.3.1",
"react-syntax-highlighter": "^15.2.1",
"remark-frontmatter": "^3.0.0",
"remark-mdx": "^1.6.19",
"rss": "^1.2.2",
"sass": "^1.26.11",
"serve": "^11.3.2",
"styled-components": "^5.2.0",
"swr": "^0.3.2",
"uuid": "^8.3.1",
"xstate": "^4.13.0"
},
"devDependencies": {
"@types/node": "^14.11.2",
"@types/react": "^16.9.49",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-styled-components": "^1.11.1",
"typescript": "^4.0.3"
}
}