-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.07 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
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
{
"name": "@tadamus/wpui",
"version": "1.1",
"description": "A collection of React components that we use to build interfaces for our plugins.",
"main": "./lib/index.js",
"scripts": {
"build": "webpack",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tadamuscom/wpui.git"
},
"keywords": ["layout", "wordpress", "wordpress-components"],
"author": "Tadamus",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/tadamuscom/wplayoutpack/issues"
},
"homepage": "https://tadamus.com",
"dependencies": {
"@wordpress/api-fetch": "^6.53.0",
"@wordpress/element": "^5.33.0",
"@wordpress/hooks": "^3.56.0",
"@wordpress/i18n": "^4.56.0",
"classnames": "^2.3.2",
"mini-css-extract-plugin": "^2.9.0",
"react": "^18.2.0",
"react-contenteditable": "^3.3.7",
"react-dom": "^18.2.0",
"react-toastify": "^10.0.5",
"sanitize-html": "^2.11.0",
"tailwindcss": "^3.4.3"
},
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.22.17",
"@babel/preset-env": "^7.22.15",
"@babel/preset-react": "^7.22.15",
"@rainforestqa/eslint-plugin": "^1.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"babel-loader": "^9.1.3",
"css-loader": "^6.10.0",
"cssnano": "^6.0.1",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"postcss": "^8.4.38",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^9.5.4",
"postcss-safe-important": "^2.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"semver": "^7.6.0",
"style-loader": "^3.3.4",
"webpack": "^5.89.0",
"webpack-assets-manifest": "^5.1.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"case-sensitive-paths-webpack-plugin": "2.4.0"
},
"files": ["./lib/**/*"],
"engines": {
"node": "20"
}
}