forked from udecode/plate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.19 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"private": true,
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/src/slate-plugins/index.d.ts",
"workspaces": [
"packages/*"
],
"scripts": {
"prebuild": "yarn clean",
"build": "lerna run build --parallel --since",
"build-storybook": "build-storybook",
"clean": "rimraf dist",
"lint": "eslint \"packages/*/src/**/*.{js,jsx,ts,tsx}\"",
"pre-release": "yarn release --conventional-prerelease",
"release": "yarn lint && CI=true yarn test && yarn build && lerna publish && yarn release:open",
"release:open": "open https://github.com/zbeyens/slate-plugins-next/releases",
"storybook": "start-storybook -p 6006",
"test": "yarn workspace slate-plugins-next jest",
"test:cov": "yarn test --coverage",
"test:covw": "yarn test:cov --watch",
"test:covwa": "yarn test:cov --watchAll"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@borealisgroup/eslint-config-ts": "^1.3.0",
"@material-ui/core": "^4.9.13",
"@material-ui/icons": "^4.9.1",
"@storybook/addon-docs": "^5.3.19",
"@storybook/addon-knobs": "^5.3.19",
"@storybook/addon-storysource": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/cli": "^5.3.19",
"@storybook/react": "^5.3.19",
"@storybook/theming": "^5.3.19",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.4",
"@testing-library/react-hooks": "^3.2.1",
"@testing-library/user-event": "^10.1.0",
"@types/faker": "^4.1.11",
"@types/is-hotkey": "^0.1.1",
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.150",
"@types/node": "^14.0.5",
"@types/prismjs": "^1.16.0",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/styled-components": "^5.1.0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"babel-plugin-inline-json-import": "^0.3.2",
"babel-plugin-styled-components": "^1.10.7",
"eslint": "^6.8.0",
"eslint-plugin-mdx": "^1.6.9",
"eslint-plugin-prettier": "^3.1.3",
"faker": "^4.1.0",
"jest": "^26.0.1",
"lerna": "^3.20.2",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"rollup": "^2.8.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-includepaths": "^0.2.3",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"slate": "0.58.1",
"slate-history": "0.58.1",
"slate-hyperscript": "0.58.1",
"slate-react": "0.58.1",
"styled-components": "^5.1.0",
"ts-jest": "^26.0.0",
"ts-loader": "^7.0.5",
"typescript": "^3.9.3"
},
"dependencies": {
"styled-icons": "^10.2.1"
}
}