-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.24 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.24 KB
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
{
"name": "tinymcerte",
"description": "TinyMCE Rich Text Editor",
"main": "./src/js/index.js",
"scripts": {
"build": "webpack --progress --mode production && npm run gettinymce && npm run getlangs",
"dev": "webpack --watch --progress --mode development",
"gettinymce": "cp -r node_modules/tinymce ./assets/components/tinymcerte/mgr/tinymce",
"getlangs": "cp -r node_modules/tinymce-i18n/langs6 ./assets/components/tinymcerte/mgr/tinymce/langs"
},
"library": {
"name": "TinyMCERTE",
"entry": "index.js",
"dist-web": "tinymcerte.min.js"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.23.8",
"@babel/register": "^7.23.7",
"babel-loader": "^9.1.3",
"babel-plugin-add-module-exports": "^1.0.4",
"mini-css-extract-plugin": "^2.7.7",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"autoprefixer": "^10.4.17",
"choices.js": "^11.1.0",
"css-loader": "^6.9.1",
"cssnano": "^6.0.3",
"postcss-loader": "^8.0.0",
"tinymce": "^6.8.6",
"tinymce-i18n": "^25.5.12"
}
}