-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.07 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
{
"name": "craft-tinymce",
"version": "2.0.1",
"description": "Adds the TinyMCE rich text editor as a Craft CMS field type",
"private": true,
"main": "client/src/main.ts",
"repository": "https://github.com/spicywebau/craft-tinymce.git",
"author": "Spicy Web <[email protected]>",
"license": "GPL-3.0-or-later",
"scripts": {
"build": "./node_modules/.bin/ts-standard && ./node_modules/.bin/webpack"
},
"devDependencies": {
"@tinymce/oxide": "^2.1.1",
"@types/jquery": "^3.5.14",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"file-loader": "^6.2.0",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"mini-css-extract-plugin": "^2.6.1",
"source-map-loader": "^4.0.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"tinymce": "^7.0.0",
"ts-loader": "^9.3.1",
"ts-standard": "^11.0.0",
"typescript": "^4.8.2",
"url-loader": "^4.1.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"ts-standard": {
"ignore": [
"src/assets/*/dist/**/*.js"
]
}
}