-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.87 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
{
"name": "post-meta-controls",
"description": "Post Meta Controls",
"version": "1.4.1",
"homepage": "https://wordpress.org/plugins/post-meta-controls/",
"author": "Alvaro Garcia",
"private": true,
"scripts": {
"start": "npm run dev",
"predev": "npm run clean:dist",
"dev": "webpack --mode=development",
"prebuild": "npm run clean:dist && npm run clean:release && npm run test",
"build": "webpack --mode=production",
"postbuild": "npm run replace:version && npm run copy:release",
"clean:dist": "rm -rf dist",
"clean:release": "rm -rf _release",
"copy:release": "node scripts/copy-files.js",
"replace:version": "node scripts/replace-version.js",
"test": "npm run test:types && npm run test:lint && npm run test:prettier",
"test:types": "tsc",
"test:lint": "eslint \"**/*.{js,ts,tsx}\"",
"test:prettier": "prettier --check \"**/*.{js,ts,tsx,php,json}\"",
"prettier": "prettier --write \"**/*.{js,ts,tsx,php,json}\""
},
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@babel/register": "^7.12.10",
"@types/dompurify": "2.2.1",
"@types/lodash": "^4.14.168",
"@types/react": "^16.14.2",
"@types/react-dates": "^21.8.1",
"@types/react-dom": "^16.9.10",
"@types/tinycolor2": "^1.4.2",
"@types/uuid": "^8.3.0",
"@types/wordpress__api-fetch": "^3.2.3",
"@types/wordpress__block-editor": "^2.2.9",
"@types/wordpress__compose": "^3.4.3",
"@types/wordpress__edit-post": "^3.5.4",
"@types/wordpress__editor": "^9.4.5",
"@types/wordpress__plugins": "^2.3.7",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"@wordpress/browserslist-config": "^3.0.0",
"@wordpress/components": "^12.0.2",
"@wordpress/data": "^4.26.2",
"@wordpress/element": "^2.19.0",
"@wordpress/hooks": "^2.11.0",
"@wordpress/i18n": "^3.17.0",
"@wordpress/url": "^2.21.1",
"array-move": "^3.0.1",
"babel-loader": "^8.2.2",
"browserslist": "^4.16.1",
"copyfiles": "^2.4.1",
"css-loader": "^5.0.1",
"css-minimizer-webpack-plugin": "^1.2.0",
"dompurify": "^2.2.6",
"immer": "^8.0.1",
"mini-css-extract-plugin": "^1.3.4",
"moment": "^2.29.1",
"nib": "^1.1.2",
"react": "^16.14.0",
"react-dates": "^21.8.0",
"react-dom": "^16.14.0",
"react-sortable-hoc": "^1.11.0",
"react-with-direction": "^1.3.1",
"replace-in-file": "^6.1.0",
"stylus": "^0.54.8",
"stylus-loader": "^4.3.3",
"terser-webpack-plugin": "^5.1.1",
"tinycolor2": "^1.4.2",
"typescript": "^4.1.3",
"uuid": "^8.3.2",
"webpack": "^5.17.0",
"webpack-cli": "^4.4.0"
},
"devDependencies": {
"@prettier/plugin-php": "^0.16.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"prettier": "^2.2.1"
}
}