-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
63 lines (63 loc) · 1.82 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
55
56
57
58
59
60
61
62
63
{
"name": "slate-test-utils",
"license": "MIT",
"repository": "https://github.com/mwood23/slate-test-utils",
"author": "Marcus Wood <[email protected]>",
"homepage": "https://github.com/mwood23/slate-test-utils",
"version": "1.3.2",
"keywords": [
"slate",
"slate-react",
"slatejs"
],
"scripts": {
"dev": "tsc --watch",
"build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json",
"build:watch": "tsc --watch"
},
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"types": "./dist/esm/index.d.ts",
"dependencies": {
"is-hotkey": "^0.2.0",
"lodash.clonedeep": "^4.5.0",
"jest-useragent-mock": "^0.1.1"
},
"peerDependencies": {
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"slate": ">=0.70.0",
"slate-history": ">=0.66.0",
"slate-react": ">=0.70.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@types/lodash.clonedeep": "^4.5.6",
"@types/react": "^16.8.0",
"@types/react-dom": "^16.8.0",
"eslint": "^7.32.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.5.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unicorn": "^36.0.0",
"prettier": "^2.4.1",
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"slate": "^0.70.0",
"slate-history": "^0.66.0",
"slate-hyperscript": "^0.67.0",
"slate-react": "^0.70.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.4"
}
}