This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 3.36 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
{
"name": "cd2-gutenberg-shortcode",
"version": "1.1.1",
"license": "GPL-2.0-or-later",
"main": "src/index.js",
"repository": "git+https://github.com/CODESIGN2/gutenberg-shortcode-preview-block.git",
"devDependencies": {
"@babel/core": "7.11.5",
"@babel/plugin-syntax-jsx": "7.8.3",
"@babel/runtime-corejs3": "7.9.2",
"@babel/traverse": "7.9.0",
"@storybook/addon-a11y": "6.1.8",
"@storybook/addon-actions": "6.1.8",
"@storybook/addon-docs": "6.1.8",
"@storybook/addon-knobs": "6.1.8",
"@storybook/addon-links": "6.1.8",
"@storybook/addon-storysource": "6.1.8",
"@storybook/addon-viewport": "6.1.8",
"@storybook/addons": "6.1.8",
"@storybook/react": "6.1.8",
"@testing-library/jest-dom": "5.11.1",
"@testing-library/react": "10.4.7",
"@testing-library/user-event": "12.0.11",
"@types/jest": "22.2.3",
"@wordpress/a11y": "2.13.0",
"@wordpress/babel-preset-default": "4.19.0",
"@wordpress/block-library": "2.26.4",
"@wordpress/blocks": "6.24.1",
"@wordpress/components": "11.1.1",
"@wordpress/compose": "3.22.0",
"@wordpress/data": "4.25.0",
"@wordpress/dependency-extraction-webpack-plugin": "2.8.0",
"@wordpress/dom": "2.15.0",
"@wordpress/dom-ready": "2.11.0",
"@wordpress/editor": "9.24.3",
"@wordpress/element": "2.18.0",
"@wordpress/format-library": "1.25.3",
"@wordpress/hooks": "2.10.0",
"@wordpress/i18n": "3.16.0",
"@wordpress/icons": "2.8.0",
"@wordpress/jest-preset-default": "6.5.0",
"@wordpress/plugins": "2.23.0",
"@wordpress/postcss-plugins-preset": "1.5.1",
"@wordpress/primitives": "1.10.0",
"@wordpress/scripts": "12.5.0",
"@wordpress/shortcode": "2.11.0",
"@wordpress/url": "2.19.0",
"babel-jest": "25.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-emotion": "10.0.33",
"babel-plugin-inline-json-import": "0.3.2",
"babel-plugin-react-native-classname-to-style": "1.2.2",
"babel-plugin-react-native-platform-specific-extensions": "1.1.1",
"babel-plugin-require-context-hook": "1.0.0",
"cross-env": "^5.2.0",
"css-loader": "3.5.2",
"fetch-mock": "^7.7.0",
"jsdom": "15.2.1",
"mem": ">=4.0.0",
"node-sass": "4.13.1",
"npm-run-all": "^4.1.5",
"postcss": "8.2.10",
"postcss-loader": "3.0.0",
"prettier": "^2.2.1",
"react": "16.13.1",
"react-dom": "16.9.0",
"react-scripts": "^4.0.1",
"sass-loader": "8.0.2",
"style-loader": "1.0.0",
"stylelint-config-wordpress": "17.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"scripts": {
"build": "cross-env WP_NO_EXTERNALS=true BABEL_ENV=default NODE_ENV=production webpack --mode=production",
"dev": "cross-env BABEL_ENV=default NODE_ENV=development webpack --mode=development --watch",
"storybook": "start-storybook -c ./storybook -p 6006",
"storybook:build": "build-storybook -c ./storybook",
"test": "jest",
"test:coverage": "jest --coverage",
"ci:coveralls": "jest --coverage && coveralls < coverage/lcov.info",
"lint:style": "wp-scripts lint-style src",
"lint:js": "wp-scripts lint-js src",
"lint": "run-p lint:*"
},
"dependencies": {},
"jest": {
"preset": "@wordpress/jest-preset-default",
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50,
"statements": 50
}
}
}
}