-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.65 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.65 KB
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": "xstate-cartographer",
"version": "0.0.1",
"description": "(Alternative) Visualizer for XState",
"main": "lib/index.js",
"scripts": {
"lint": "eslint --fix && prettier -w ./src",
"ci-lint": "eslint",
"start": "node fuse",
"test": "NODE_ENV=test node_modules/.bin/jest --coverage --no-cache",
"upgrade-interactive": "node_modules/.bin/npm-check --update"
},
"author": "Jon Edwards",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.13.6",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"@types/react-test-renderer": "^16.8.1",
"@types/styled-components": "^4.1.14",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"fuse-box": "^3.7.1",
"jest": "^24.7.1",
"npm-check": "^5.9.0",
"prettier": "^2.3.2",
"react-test-renderer": "^16.8.6",
"ts-jest": "^24.0.2",
"tslib": "^1.9.3",
"typescript": "^3.9.10",
"typescript-plugin-styled-components": "^1.4.2"
},
"dependencies": {
"@xstate/graph": "^1.3.0",
"@xstate/react": "^1.5.1",
"brace": "^0.11.1",
"react": "^16.8.6",
"react-ace": "^6.5.0",
"react-dom": "^16.8.6",
"react-split-pane": "^0.1.87",
"styled-components": "^4.2.0",
"xstate": "^4.5.0"
}
}