forked from mautic/grapesjs-preset-mautic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.63 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
{
"name": "grapesjs-preset-mautic",
"version": "1.0.0",
"description": "Grapesjs Preset Mautic",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Webmecanik/grapesjs-preset-mautic.git"
},
"scripts": {
"start": "grapesjs-cli serve",
"build": "babel src/ -d dist/",
"lint": "eslint src/",
"prettier": "node_modules/.bin/prettier -w src/",
"prettier-check": "node_modules/.bin/prettier -c src/",
"bump": "npm version patch -m 'Bump v%s'"
},
"keywords": [
"grapesjs",
"plugin"
],
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-flow": "^7.13.13",
"babel-eslint": "^10.1.0",
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"parcel-bundler": "^1.12.4",
"prettier": "^2.2.1"
},
"eslintConfig": {
"env": {
"browser": true
},
"extends": [
"airbnb/base",
"plugin:prettier/recommended"
],
"ignorePatterns": [
"src/api/mautic"
],
"parser": "babel-eslint",
"plugins": [
"prettier"
]
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5"
},
"license": "MIT",
"dependencies": {
"mjml": "^4.9.3",
"mjml-browser": "^4.9.3"
}
}