forked from amitnovick/xstate-devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.54 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
{
"name": "@statecharts/xstate-viz",
"version": "0.3.0",
"description": "Visualizer for XState.",
"main": "lib/index.js",
"scripts": {
"start": "cd public/src && npm start",
"test": "echo \"Error: no test specified\" && exit 1",
"examples": "tsc && ncp lib examples/src/lib && cd examples && npm start",
"build": "tsc",
"build:watch": "tsc -w",
"prepublish": "tsc",
"develop": "npm link && concurrently \"tsc -w\" \"cd public && npm link @statecharts/xstate-viz && npm start\"",
"deploy": "cd public && npm run deploy"
},
"files": [
"lib"
],
"author": "David Khourshid",
"license": "MIT",
"devDependencies": {
"@types/react": "^16.8.22",
"@types/react-dom": "^16.8.4",
"@types/react-syntax-highlighter": "^10.2.0",
"@types/styled-components": "^4.0.3",
"concurrently": "^4.0.1",
"gh-pages": "^2.0.1",
"ncp": "^2.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rollup": "^0.66.6",
"rollup-plugin-filesize": "^5.0.1",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-terser": "^3.0.0",
"rollup-plugin-typescript2": "^0.17.2",
"typescript": "^3.4.5"
},
"dependencies": {
"@xstate/react": "^0.6.1",
"brace": "^0.11.1",
"create-react-app": "^2.1.0",
"date-fns": "^1.30.1",
"immer": "^3.1.3",
"query-string": "^6.8.1",
"react-ace": "^6.2.0",
"react-syntax-highlighter": "^10.3.0",
"styled-components": "^4.0.2",
"xstate": "^4.6.7"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}