-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 3.54 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
{
"name": "jetpack-search",
"version": "0.47.5-alpha",
"description": "Package for Jetpack Search products",
"main": "main.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "pnpm run clean && pnpm run build-instant && pnpm run build-customberg && pnpm run build-dashboard",
"build-production": "NODE_ENV=production BABEL_ENV=production pnpm run build && pnpm run validate",
"build-development": "NODE_ENV=development BABEL_ENV=development pnpm run build",
"build-instant": "webpack --config ./tools/webpack.instant.config.js",
"build-customberg": "webpack --config ./tools/webpack.customberg.config.js",
"build-dashboard": "webpack --config ./tools/webpack.dashboard.config.js",
"clean": "rm -rf build/ .cache/",
"test": "concurrently 'pnpm:test-scripts' 'pnpm:test-size'",
"test-coverage": "pnpm run test-scripts --coverage",
"test-scripts": "jest --passWithNoTests",
"test-size": "NODE_ENV=production BABEL_ENV=production pnpm run build-instant && size-limit",
"validate": "pnpm exec validate-es --no-error-on-unmatched-pattern build/",
"watch": "concurrently 'pnpm:build-instant --watch' 'pnpm:build-customberg --watch' 'pnpm:build-dashboard --watch'"
},
"repository": {
"type": "git",
"url": "https://github.com/Automattic/jetpack",
"directory": "projects/packages/search"
},
"author": "Automattic",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/Automattic/jetpack/labels/[Package] Search"
},
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/search/#readme",
"dependencies": {
"@automattic/calypso-color-schemes": "3.1.3",
"@automattic/color-studio": "4.0.0",
"@automattic/format-currency": "1.0.1",
"@automattic/jetpack-analytics": "^0.1.34-alpha",
"@automattic/jetpack-api": "^0.17.21",
"@automattic/jetpack-base-styles": "^0.6.39",
"@automattic/jetpack-components": "^0.65.2-alpha",
"@automattic/jetpack-connection": "^0.36.3-alpha",
"@wordpress/base-styles": "5.14.0",
"@wordpress/block-editor": "14.9.0",
"@wordpress/data": "10.14.0",
"@wordpress/element": "6.14.0",
"@wordpress/i18n": "5.14.0",
"@wordpress/icons": "10.14.0",
"clsx": "2.1.1",
"fast-json-stable-stringify": "2.1.0",
"lodash": "4.17.21",
"photon": "4.1.1",
"preact": "10.22.1",
"prop-types": "15.8.1",
"q-flat": "1.0.7",
"qss": "3.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-redux": "7.2.8",
"redux": "4.1.1",
"refx": "3.1.1",
"strip": "3.0.0",
"tiny-lru": "7.0.6"
},
"devDependencies": {
"@automattic/jetpack-webpack-config": "workspace:*",
"@babel/core": "7.26.0",
"@babel/plugin-transform-react-jsx": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.26.3",
"@babel/preset-typescript": "7.26.0",
"@babel/runtime": "7.26.0",
"@csstools/postcss-global-data": "2.1.1",
"@size-limit/preset-app": "11.1.6",
"@testing-library/dom": "10.4.0",
"@testing-library/preact": "3.2.4",
"@testing-library/react": "16.0.1",
"@wordpress/babel-plugin-import-jsx-pragma": "5.14.0",
"@wordpress/browserslist-config": "6.14.0",
"@wordpress/dependency-extraction-webpack-plugin": "6.14.0",
"autoprefixer": "10.4.20",
"babel-jest": "29.4.3",
"concurrently": "7.6.0",
"core-js": "3.38.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"postcss": "8.4.47",
"postcss-custom-properties": "12.1.7",
"postcss-loader": "6.2.0",
"sass": "1.64.1",
"sass-loader": "12.4.0",
"size-limit": "11.1.6",
"webpack": "5.94.0",
"webpack-cli": "4.9.1"
},
"browserslist": [
"extends @wordpress/browserslist-config"
]
}