-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
127 lines (127 loc) · 5.72 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
117
118
119
120
121
122
123
124
125
126
127
{
"name": "wp-table-builder",
"version": "1.6.5",
"description": "Best Table Builder Plugin for WordPress",
"scripts": {
"pot": "wp-pot --src '**/*.php' --dest-file 'languages/wp-table-builder.pot' --package 'wptb' --domain 'wp-table-builder' --last-translator 'Imtiaz Rayhan <irayhan.asif@gmail.com>' --team 'WP Table Builder <irayhan.asif@gmail.com>' --bug-report 'https://github.com/imtiazrayhan/wp-table-builder/issues'",
"bundle:watch": "parcel watch ./inc/admin/js/core/rollup-source/*.js -d ./inc/admin/js --no-cache --no-hmr",
"bundle:build": " parcel build ./inc/admin/js/core/rollup-source/*.js -d ./inc/admin/js --no-cache --no-source-maps",
"dev:build": "cross-env NODE_ENV=development npm run bundle:build & npm run gulp:build & npm run gutenberg:build",
"dev:build:watch": "cross-env NODE_ENV=development concurrently 'npm:bundle:watch' 'npm:gulp:watch' 'npm:gutenberg:dev'",
"dev:legacy:build:watch": "cross-env NODE_ENV=development concurrently 'npm:bundle:watch' 'npm:gulp:watch' 'npm:gutenberg:legacy:dev'",
"prod:build": "cross-env NODE_ENV=production npm run bundle:build && npm run gulp:build && npm run gutenberg:build",
"prod:legacy:build": "cross-env NODE_ENV=production npm run bundle:build && npm run gulp:build && npm run gutenberg:legacy:build",
"prod:build:watch": "cross-env NODE_ENV=production concurrently 'npm:bundle:watch' 'npm:gulp:watch' 'npm:gutenberg:dev'",
"gutenberg:dev": "wp-scripts start",
"gutenberg:build": "cross-env wp-scripts build",
"gutenberg:legacy:dev": "wp-scripts start",
"gutenberg:legacy:build": "wp-scripts build",
"lint": "eslint ./inc/admin/js/core/rollup-source --ignore-pattern '/inc/admin/js/core/rollup-source/functions/importOperations.js' --ext .js,.vue",
"gulp:build": "gulp default",
"gulp:watch": "gulp watch",
"preinstall": "npx npm-force-resolutions",
"export": "node export.js"
},
"alias": {
"vue": "./node_modules/vue/dist/vue.esm.js",
"$Js": "./inc/admin/js",
"$Core": "./inc/admin/js/core",
"$Components": "./inc/admin/js/core/rollup-source/components",
"$Mixins": "./inc/admin/js/core/rollup-source/mixins",
"$Functions": "./inc/admin/js/core/rollup-source/functions",
"$Settings": "./inc/admin/js/core/rollup-source/components/Settings",
"$LeftPanel": "./inc/admin/js/core/rollup-source/components/leftPanel",
"$LazyLoadSettings": "./inc/admin/js/core/rollup-source/components/lazyLoadSettings",
"$Plugins": "./inc/admin/js/core/rollup-source/plugins",
"$Containers": "./inc/admin/js/core/rollup-source/containers",
"$MountPoints": "./inc/admin/js/core/rollup-source/mountPoints",
"$Stores": "./inc/admin/js/core/rollup-source/stores",
"$FrontEndOnly": "./inc/frontend/js/frontend-only"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-transform-runtime",
"babel-plugin-transform-es2017-object-entries"
]
},
"resolutions": {
"graceful-fs": "4.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imtiazrayhan/wp-table-builder.git"
},
"author": "Imtiaz Rayhan",
"license": "GPL-3.0+",
"bugs": {
"url": "https://github.com/imtiazrayhan/wp-table-builder/issues"
},
"homepage": "https://github.com/imtiazrayhan/wp-table-builder.git",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.14.5",
"@vue/component-compiler-utils": "^3.1.2",
"@wordpress/eslint-plugin": "^7.2.1",
"@wordpress/scripts": "^12.2.1",
"archiver": "^5.3.1",
"babel-eslint": "^10.1.0",
"babel-plugin-proxy": "^1.1.0",
"babel-plugin-transform-es2017-object-entries": "^0.0.5",
"babel-preset-env": "^1.4.0",
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.5.2",
"gulp-csso": "^4.0.1",
"gulp-if": "^3.0.0",
"gulp-js-import": "^1.0.6",
"gulp-notify": "^3.0.0",
"gulp-sass": "^5.1.0",
"gulp-sort": "^2.0.0",
"gulp-sourcemaps": "^2.6.0",
"gulp-uglify": "^3.0.2",
"gulp-watch": "^4.2.4",
"gulp-wp-pot": "^2.0.4",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"sass": "^1.49.7",
"vue-template-compiler": "^2.7.16"
},
"dependencies": {
"@vue/runtime-dom": "^3.2.45",
"@wordpress/api-fetch": "^3.20.0",
"@wordpress/block-editor": "^4.5.0",
"@wordpress/blocks": "^6.22.0",
"@wordpress/components": "^11.0.0",
"@wordpress/data": "^4.24.0",
"@wordpress/i18n": "^3.11.0",
"codemirror": "^5.59.4",
"deepmerge": "^4.2.2",
"export": "^0.1.337",
"gulp-rename": "^1.4.0",
"js-cookie": "^3.0.1",
"portal-vue": "^2.1.7",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"vue": "^2.7.14",
"vue-color": "^2.8.1",
"vue-fragment": "1.5.1",
"vue-hot-reload-api": "^2.3.4",
"vuex": "^3.6.2"
}
}