-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
55 lines (55 loc) · 2.45 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
{
"name": "grapesjsbuilderbundle",
"version": "1.0.0",
"description": "⚠️ This Plugin is still Beta! It works great already and we're developing it actively! Please use it and report everything inside the \"Issues\" here in Github. ⚠️",
"main": "index.js",
"scripts": {
"build": "parcel build Assets/library/js/builder.js --out-dir Assets/library/js/dist --public-url ./",
"build-dev": "NODE_ENV=development parcel build Assets/library/js/builder.js --out-dir Assets/library/js/dist --public-url ./ --no-minify ",
"dev": "NODE_ENV=development parcel watch Assets/library/js/* --out-dir Assets/library/js/dist --public-url /plugins/GrapesJsBuilderBundle/Assets/library/js/dist --hmr-hostname localhost",
"lint": "eslint Assets/library/js/",
"prettier": "node_modules/.bin/prettier -w Assets/library/js/",
"prettier-check": "node_modules/.bin/prettier -c Assets/library/js/",
"start-helloWorld": "parcel Demo/helloWorld/index.html",
"start-mautic-full": "cp -r Demo/data dist && parcel Demo/mautic/full.html",
"start-mautic": "cp -r Demo/data dist && parcel Demo/mautic/index.html",
"update-mautic-preset": "rm -r node_modules/grapesjs-preset-mautic && npm install mautic/grapesjs-preset-mautic#main"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mautic/plugin-grapesjs-builder.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mautic/plugin-grapesjs-builder/issues"
},
"homepage": "https://github.com/mautic/plugin-grapesjs-builder#readme",
"dependencies": {
"grapesjs": "^0.17.29",
"grapesjs-mjml": "^0.5.8",
"grapesjs-parser-postcss": "^0.1.1",
"grapesjs-plugin-ckeditor": "^0.0.10",
"grapesjs-preset-mautic": "github:mautic/grapesjs-preset-mautic#main",
"grapesjs-preset-newsletter": "^0.2.21",
"grapesjs-preset-webpage": "^0.1.11"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.8",
"babel-eslint": "^10.1.0",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"parcel-bundler": "^1.12.4",
"prettier": "^2.5.1",
"sass": "^1.48.0"
}
}