-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
209 lines (209 loc) · 7.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
{
"name": "square-one",
"version": "5.0.0",
"description": "Modern Tribe's WordPress development framework.",
"license": "GPL-2.0",
"repository": "https://github.com/moderntribe/square-one.git",
"square1": {
"paths": {
"core_theme": "wp-content/themes/core/",
"core_theme_components": "wp-content/themes/core/components/",
"core_theme_routes": "wp-content/themes/core/routes/",
"core_theme_js_common": "wp-content/themes/core/assets/js/src/common/",
"core_theme_js_util": "wp-content/themes/core/assets/js/src/utils/",
"core_theme_css": "wp-content/themes/core/assets/css/dist/theme/",
"core_theme_css_dist": "wp-content/themes/core/assets/css/dist/theme/",
"core_theme_relative_css_dist": "assets/css/dist/theme/",
"core_theme_img": "wp-content/themes/core/assets/img/theme/",
"core_theme_js_dist": "wp-content/themes/core/assets/js/dist/theme/",
"core_theme_relative_js_dist": "assets/js/dist/theme/",
"core_theme_js_vendor": "wp-content/themes/core/assets/js/vendor/",
"core_theme_js_src": "wp-content/themes/core/assets/js/src/theme/",
"core_theme_integrations": "wp-content/themes/core/integrations/",
"core_theme_fonts": "wp-content/themes/core/assets/fonts/theme/",
"core_theme_pcss": "wp-content/themes/core/assets/css/src/theme/",
"core_components_pcss": "wp-content/themes/core/components/",
"core_routes_pcss": "wp-content/themes/core/routes/",
"core_apps_js_src": "wp-content/themes/core/assets/js/src/apps/",
"core_utils_js_src": "wp-content/themes/core/assets/js/src/utils/",
"core_admin_css": "wp-content/themes/core/assets/css/dist/admin/",
"core_admin_css_dist": "wp-content/themes/core/assets/css/dist/admin/",
"core_admin_relative_css_dist": "assets/css/dist/admin/",
"core_admin_img": "wp-content/themes/core/assets/img/admin/",
"core_admin_js_src": "wp-content/themes/core/assets/js/src/admin/",
"core_admin_js_dist": "wp-content/themes/core/assets/js/dist/admin/",
"core_admin_relative_js_dist": "assets/js/dist/admin/",
"core_admin_pcss": "wp-content/themes/core/assets/css/src/admin/",
"core_plugin": "wp-content/plugins/core",
"npm": "node_modules",
"component": "wp-content/themes/core/assets/library"
}
},
"browserslist": [
"last 2 versions",
"safari >= 15",
"ios >= 15",
"android >= 8.0",
"not ie <= 11",
"not ie_mob <= 11",
"not op_mini all",
"not bb <= 10",
"not samsung 4",
"not op_mob <= 12.1"
],
"engines": {
"node": "16.13.1",
"npm": "8.1.2"
},
"scripts": {
"build": "gulp server_dist",
"gulp": "gulp",
"run": "npm run docker:start && yarn install && npm run gulp -- dist && npm run gulp -- dev",
"dev": "npm run gulp -- dev",
"dist": "npm run gulp -- dist",
"server_dist": "npm run gulp -- server_dist",
"validate": "npm run gulp -- validate",
"js:build": "npx webpack",
"js:theme:dev": "cross-env NODE_ENV=themedev npm run js:build",
"js:admin:dev": "cross-env NODE_ENV=admindev npm run js:build",
"js:theme:prod": "cross-env NODE_ENV=themeprod npm run js:build",
"js:admin:prod": "cross-env NODE_ENV=adminprod npm run js:build",
"app:example": "cross-env NODE_ENV=example webpack server",
"test": "cross-env NODE_ENV=test jest --config jest.config.json"
},
"dependencies": {
"@babel/runtime": "^7.16.3",
"@moderntribe/a11y-dialog": "^5.3.0",
"@types/react": "^16.9.11",
"@vimeo/player": "^2.15.3",
"classnames": "^2.2.6",
"delegate": "^3.2.0",
"es6-promise": "^4.2.8",
"gulp-eslint": "^6.0.0",
"idx": "^2.4.0",
"intersection-observer": "^0.12.0",
"jquery": "3.6.0",
"lazysizes": "^5.2.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"moment-timezone": "^0.5.27",
"object-hash": "^2.2.0",
"object-to-formdata": "^2.1.2",
"prop-types": "^15.7.2",
"query-string": "^6.9.0",
"react": "^16.12.0",
"react-autobind": "^1.0.6",
"react-dom": "^16.12.0",
"react-hot-loader": "^4.12.18",
"react-modal": "^3.11.1",
"react-redux": "^7.1.3",
"redux": "^4.0.4",
"redux-actions": "^2.6.5",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0",
"spin.js": "^4.1.0",
"swiper": "^8.3.2",
"verge": "^1.10.2",
"voca": "^1.4.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-decorators": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-object-assign": "^7.0.0",
"@babel/plugin-transform-regenerator": "^7.7.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@evilmartians/lefthook": "^1.1.1",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-react-css-modules": "^5.2.6",
"browser-sync": "^2.26.7",
"concat": "^1.0.3",
"core-js": "^3.13.1",
"cross-env": "^6.0.3",
"css-color-converter": "^1.1.0",
"css-hot-loader": "^1.4.4",
"css-loader": "^3.2.0",
"css-minimizer-webpack-plugin": "^3.4.1",
"cssnano": "^4.1.10",
"del": "^5.1.0",
"enhanced-resolve": "^4.1.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"enzyme-to-json": "^3.4.3",
"eslint": "^6.6.0",
"eslint-config-products": "github:moderntribe/eslint-config-products",
"eslint-config-wpcalypso": "^5.0.0",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsdoc": "^18.0.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-wpcalypso": "^4.1.0",
"expect": "^24.9.0",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-cssnano": "^2.1.3",
"gulp-decompress": "^3.0.0",
"gulp-footer": "^2.0.2",
"gulp-header": "^2.0.7",
"gulp-if": "^3.0.0",
"gulp-jest": "^4.0.3",
"gulp-line-ending-corrector": "^1.0.3",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-shell": "^0.8.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-stylelint": "^10.0.0",
"gulp-uglify": "^3.0.1",
"identity-obj-proxy": "^3.0.0",
"ifdef-loader": "^2.1.4",
"jest": "^25.1.0",
"jest-cli": "^25.1.0",
"jest-environment-jsdom": "^24.9.0",
"jest-environment-jsdom-global": "^1.2.0",
"json2php": "0.0.4",
"mini-css-extract-plugin": "^0.9.0",
"postcss-aspect-ratio": "^1.0.0",
"postcss-assets": "^5.0.0",
"postcss-calc": "^7.0.1",
"postcss-functions": "^3.0.0",
"postcss-import": "12.0.1",
"postcss-import-ext-glob": "^1.1.0",
"postcss-inline-svg": "^4.1.0",
"postcss-loader": "^3.0.0",
"postcss-mixins": "^6.2.3",
"postcss-nested": "^4.1.0",
"postcss-partial-import": "^4.1.0",
"postcss-preset-env": "^6.0.10",
"postcss-quantity-queries": "^0.5.0",
"postcss-reporter": "^6.0.1",
"postcss-simple-vars": "^5.0.2",
"prettier": "^2.3.1",
"regenerator-runtime": "^0.13.3",
"require-dir": "^1.2.0",
"style-loader": "^1.0.0",
"stylelint": "^11.0.0",
"stylelint-config-standard": "^19.0.0",
"stylelint-order": "^3.1.1",
"terser-webpack-plugin": "^2.2.1",
"webpack": "^5.3.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.8.1",
"webpack-merge": "^4.2.2",
"webpack-merge-and-include-globally": "^2.1.20",
"webpack-stream": "^6.1.2",
"webpack-watch-files-plugin": "^1.1.0"
}
}