94 lines
2.6 KiB
JSON
94 lines
2.6 KiB
JSON
{
|
|
"name": "@woocommerce/experimental",
|
|
"version": "3.0.1",
|
|
"description": "WooCommerce experimental components.",
|
|
"author": "Automattic",
|
|
"license": "GPL-3.0-or-later",
|
|
"keywords": [
|
|
"wordpress",
|
|
"woocommerce",
|
|
"experimental"
|
|
],
|
|
"homepage": "https://github.com/woocommerce/woocommerce-admin/tree/main/packages/experimental/README.md",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/woocommerce/woocommerce-admin.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/woocommerce/woocommerce-admin/issues"
|
|
},
|
|
"main": "build/index.js",
|
|
"module": "build-module/index.js",
|
|
"react-native": "src/index",
|
|
"sideEffects": [
|
|
"build-style/**",
|
|
"src/**/*.scss"
|
|
],
|
|
"dependencies": {
|
|
"@woocommerce/components": "workspace:*",
|
|
"@wordpress/components": "^19.5.0",
|
|
"@wordpress/element": "^4.1.1",
|
|
"@wordpress/i18n": "^4.3.1",
|
|
"@wordpress/icons": "^8.1.0",
|
|
"@wordpress/keycodes": "^3.3.1",
|
|
"classnames": "^2.3.1",
|
|
"dompurify": "^2.3.6",
|
|
"gridicons": "^3.4.0",
|
|
"moment": "^2.29.1",
|
|
"react-transition-group": "^4.4.2",
|
|
"react-visibility-sensor": "^5.1.1"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.17.5",
|
|
"@babel/runtime": "^7.17.2",
|
|
"@storybook/addon-actions": "^6.4.0",
|
|
"@storybook/addon-console": "^1.2.3",
|
|
"@storybook/react": "^6.4.19",
|
|
"@testing-library/dom": "^8.11.3",
|
|
"@testing-library/react": "^12.1.3",
|
|
"@testing-library/user-event": "^13.5.0",
|
|
"@types/dompurify": "^2.3.3",
|
|
"@types/react-transition-group": "^4.4.4",
|
|
"@woocommerce/style-build": "workspace:*",
|
|
"@wordpress/browserslist-config": "^4.1.1",
|
|
"@wordpress/eslint-plugin": "^11.0.0",
|
|
"concurrently": "^7.0.0",
|
|
"css-loader": "^3.6.0",
|
|
"eslint": "^8.12.0",
|
|
"jest": "^27.5.1",
|
|
"jest-cli": "^27.5.1",
|
|
"postcss-loader": "^3.0.0",
|
|
"rimraf": "^3.0.2",
|
|
"sass-loader": "^10.2.1",
|
|
"ts-jest": "^27.1.3",
|
|
"typescript": "^4.6.2",
|
|
"webpack": "^5.70.0",
|
|
"webpack-cli": "^3.3.12"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^17.0.0",
|
|
"react-dom": "^17.0.0"
|
|
},
|
|
"scripts": {
|
|
"clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*",
|
|
"build": "pnpm run build:js && pnpm run build:css",
|
|
"build:js": "tsc --build ./tsconfig.json ./tsconfig-cjs.json",
|
|
"build:css": "webpack",
|
|
"start": "concurrently \"tsc --build --watch\" \"webpack --watch\"",
|
|
"prepack": "pnpm run clean && pnpm run build",
|
|
"lint": "eslint src",
|
|
"test": "pnpm run build && pnpm run test:nobuild",
|
|
"test:nobuild": "jest --config ./jest.config.json",
|
|
"test-staged": "jest --bail --config ./jest.config.json --findRelatedTests"
|
|
},
|
|
"lint-staged": {
|
|
"*.(t|j)s?(x)": [
|
|
"eslint --fix",
|
|
"pnpm test-staged"
|
|
]
|
|
}
|
|
}
|