-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.78 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
{
"name": "draft-js-handlebars-plugin",
"version": "1.0.5",
"description": "Draft js plugin for visualizing and editing handlebars code in a user friendly way.",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "./node_modules/.bin/eslint ./src && jest",
"build": "./node_modules/.bin/babel src --out-dir lib --copy-files",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "https://github.com/Cimpress-MCP/draft-js-handlebars-plugin.git"
},
"keywords": [
"draftjs",
"draft",
"plugin",
"handlebars"
],
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.7.0",
"@cimpress/react-components": "^6.0.7",
"draft-js": "^0.11.7",
"draftjs-conductor": "^0.3.0",
"draftjs-utils": "^0.9.4",
"i18next": "^13.1.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-i18next": "^9.0.2"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/addons": "^6.2.9",
"@storybook/react": "^6.2.9",
"babel-jest": "^26.6.3",
"babel-loader": "^8.0.5",
"draft-js-inline-toolbar-plugin": "^3.0.0",
"draft-js-plugins-editor": "^2.1.1",
"draft-js-static-toolbar-plugin": "^3.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.12.0",
"eslint-config-google": "^0.11.0",
"eslint-plugin-react": "^7.12.3",
"jest": "^26.6.3",
"jest-transform-css": "^2.0.0",
"regenerator-runtime": "^0.13.1"
}
}