-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
116 lines (116 loc) · 4.04 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "easy-watermark",
"version": "1.0.0",
"description": "Easy Watermark WordPress Plugin",
"repository": "https://github.com/BracketSpace/easy-watermark.git",
"author": "Wojtek Szałkiewicz <[email protected]>",
"license": "GPL-3.0-or-later",
"scripts": {
"start": "webpack --watch --mode development",
"build": "webpack --mode development",
"build:production": "webpack --mode production",
"lint:js": "eslint -c .eslintrc.prod.json ./assets/src/scripts/**/*.js",
"lint:css": "stylelint ./assets/src/styles/**/*.scss",
"fix:js": "eslint -c .eslintrc.prod.json ./assets/src/scripts/**/*.js --fix",
"fix:css": "stylelint ./assets/src/styles/**/*.scss --fix",
"lint": "run-p \"lint:*\"",
"fix": "run-p \"fix:*\"",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.13.10",
"@svgr/webpack": "^5.5.0",
"@types/backbone": "^1.4.10",
"@types/jest": "^26.0.22",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/wordpress__components": "^9.8.6",
"@types/wordpress__compose": "^3.4.3",
"@types/wordpress__data": "^4.6.9",
"@types/wordpress__media-utils": "^0.2.3",
"@wordpress/api-fetch": "^3.22.0",
"@wordpress/base-styles": "^3.4.0",
"@wordpress/block-editor": "^5.3.0",
"@wordpress/components": "^13.0.0",
"@wordpress/compose": "^3.25.0",
"@wordpress/data": "^4.27.0",
"@wordpress/dependency-extraction-webpack-plugin": "^3.1.0",
"@wordpress/editor": "^9.12.3",
"@wordpress/element": "^2.20.0",
"@wordpress/eslint-plugin": "^8.0.2",
"@wordpress/i18n": "^3.9.0",
"@wordpress/icons": "^2.8.0",
"@wordpress/interface": "^1.1.0",
"@wordpress/keycodes": "^2.9.0",
"@wordpress/media-utils": "^1.7.2",
"@wordpress/notices": "^2.13.0",
"@wordpress/primitives": "^1.12.0",
"@wordpress/stylelint-config": "^19.0.1",
"@wordpress/url": "^2.11.0",
"@wordpress/viewport": "^2.13.1",
"autobind-decorator": "^2.4.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.0.4",
"classlist-polyfill": "^1.2.0",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^3.0.0",
"clipboard": "^2.0.4",
"copy-webpack-plugin": "^8.1.0",
"css-loader": "^5.2.0",
"domify": "^1.4.0",
"es-abstract": "^1.17.4",
"es6-object-assign": "^1.1.0",
"eslint": "^7.21.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-jsdoc": "^32.2.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-webpack-plugin": "^2.5.3",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.2.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"jest": "^26.6.3",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^1.4.0",
"mousetrap": "^1.6.5",
"node-sass-glob-importer": "^5.3.2",
"npm-run-all": "^4.1.5",
"object-assign": "^4.1.1",
"postcss-scss": "^3.0.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-draggable": "^4.2.0",
"react-focus-within": "^2.0.1",
"react-is": "^17.0.2",
"react-moveable": "^0.27.6",
"react-pan-and-zoom-hoc": "^2.1.8",
"react-resizable-rotatable-draggable": "^0.2.0",
"react-resize-aware": "^3.1.0",
"react-test-renderer": "^17.0.2",
"react-zoom-pan-pinch": "^1.6.1",
"refx": "^3.1.1",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"selectize": "^0.12.6",
"style-loader": "^2.0.0",
"stylelint": "^13.12.0",
"stylelint-order": "^4.1.0",
"stylelint-webpack-plugin": "^2.1.1",
"typescript": "^4.2.3",
"url-loader": "^4.1.1",
"use-memo-one": "^1.1.2",
"vex-dialog": "^1.1.0",
"vex-js": "^4.1.0",
"webpack": "^5.28.0",
"webpack-cli": "^4.6.0"
}
}