-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
111 lines (111 loc) · 3.92 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
{
"name": "tribe-common",
"version": "6.3.1",
"repository": "git@github.com:the-events-calendar/tribe-common.git",
"_resourcepath": "src/resources",
"_domainPath": "lang",
"_textDomain": "tribe-common",
"_glotPressUrl": "https://translations.theeventscalendar.com",
"_glotPressSlug": "tribe-common",
"_glotPressFileFormat": "%textdomain%-%wp_locale%.%format%",
"_glotPressFormats": ["po", "mo"],
"_glotPressFilter": {
"translation_sets": false,
"minimum_percentage": 30,
"waiting_strings": false
},
"_filePath": {
"eslint": [
"src/modules/**/*.js",
"src/resources/js/**/*.js",
"!src/resources/js/**/*.min.js",
"!src/resources/js/app/**/*.js",
"!src/resources/js/utils/query-string.js"
],
"stylelint": [
"src/resources/postcss/**/*.pcss",
"!src/resources/postcss/app-shop.pcss",
"!src/resources/postcss/bumpdown.pcss",
"!src/resources/postcss/buttonset.pcss",
"!src/resources/postcss/datatables.pcss",
"!src/resources/postcss/datepicker.pcss",
"!src/resources/postcss/tribe-ui.pcss"
],
"jest": ["src/modules/**/__tests__/**/*.js"]
},
"engines": { "node": "18.13.0", "npm": "8.19.3" },
"scripts": {
"analyze": "webpack-bundle-analyzer -m static stats.json",
"bootstrap": "./scripts/linkDependencies",
"build:webpack": "export NODE_OPTIONS=--openssl-legacy-provider && cross-env NODE_ENV=production webpack -p",
"build:gulp": "cross-env NODE_ENV=production gulp",
"prebuild": "npm install",
"build": "export NODE_OPTIONS=--openssl-legacy-provider && npm run build:webpack && npm run build:gulp",
"rebuild": "rm -rf node_modules && npm install && npm run build",
"dev": "export NODE_OPTIONS=--openssl-legacy-provider && cross-env NODE_ENV=development webpack -d --watch",
"preanalyze": "cross-env NODE_ENV=production webpack -p --profile --json > stats.json",
"lint": "npm run lint:eslint && npm run lint:stylelint",
"lint:eslint": "gulp eslint",
"lint:stylelint": "gulp stylelint",
"jest": "TZ=UTC gulp jest",
"zip": "node node_modules/@the-events-calendar/product-taskmaster/util/zip.js",
"glotpress": "gulp glotpress",
"changelog": "./vendor/bin/changelogger add"
},
"dependencies": {
"@babel/runtime": "^7.15.3",
"@moderntribe/common": "file:src/modules",
"@nfen/redux-reducer-injector": "0.0.3",
"@wordpress/a11y": "1.0.3",
"@wordpress/data": "^1.1.0",
"@wordpress/i18n": "^1.2.2",
"@wordpress/is-shallow-equal": "^1.1.4",
"@wordpress/url": "1.0.0",
"bezier-easing": "^2.1.0",
"chrono-node": "^2.2.4",
"classnames": "^2.2.6",
"clipboard": "^2.0.10",
"file-loader": "^1.1.6",
"he": "^1.2.0",
"intro.js": "^3.4.0",
"jquery": "3.5.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"moment-timezone": "^0.5.40",
"prop-types": "^15.6.2",
"querystringify": "^2.0.0",
"react": "^16.14.0",
"react-day-picker": "^7.2.4",
"react-dom": "^16.14.0",
"react-input-autosize": "^2.2.1",
"react-places-autocomplete": "^6.1.2",
"react-redux": "^5.0.7",
"react-scroll-to": "^1.2.2",
"react-select": "^2.1.2",
"react-text-input": "^0.0.8",
"redux": "^4.0.0",
"redux-saga": "^0.16.1",
"redux-thunk": "^2.3.0",
"reselect": "^3.0.1",
"uniqid": "^5.0.3",
"url-loader": "^4.1.1",
"validator": "^13.7.0",
"whatwg-fetch": "^2.0.4",
"zero-fill": "^2.2.3"
},
"devDependencies": {
"@the-events-calendar/product-taskmaster": "^3.0.0",
"@wordpress/hooks": "^1.3.2",
"cross-env": "^5.2.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"gettext-parser": "1.3.0",
"redux-devtools-extension": "^2.13.7",
"redux-mock-store": "^1.5.3",
"webpack": "^4.26.1",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^3.1.2",
"webpack-merge": "^4.1.4"
},
"overrides": { "babel-plugin-lodash": { "@babel/types": "~7.20.0" } }
}