-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 3.24 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
{
"name": "temporary-access",
"version": "1.0.0",
"description": "Provide temporary access to users for a specific time period to WordPress sites.",
"main": "assets/js/index.js",
"scripts": {
"build": "wp-scripts build assets/js/index.js --output-path=assets/build/",
"prebuild:storybook": "npm run remove-dist",
"remove-dist": "rimraf ./dist",
"build:storybook": "build-storybook -c .storybook -o dist --quiet --loglevel warn",
"start": "wp-scripts start assets/js/index.js --output-path=assets/build/",
"lint:js": "wp-scripts lint-js assets/js/",
"lint:js-fix": "prettier --write --config .prettierrc.js --ignore-path .prettierignore \"**/*.{js,jsx,ts,tsx,.yml,.yaml}\"",
"test": "echo \"Error: no test specified\" && exit 1",
"test:js": "jest --config=tests/js/jest.config.js --passWithNoTests",
"test:js:watch": "npm run test:js -- --watch",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build -c .storybook -o dist --quiet --loglevel warn"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/preset-react": "^7.24.7",
"@chromatic-com/storybook": "^1.8.0",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-onboarding": "^8.2.9",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addon-viewport": "^8.2.9",
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
"@storybook/blocks": "^8.2.9",
"@storybook/cli": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/react-webpack5": "^8.2.9",
"@storybook/test": "^8.2.9",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@wordpress/babel-preset-default": "^8.6.0",
"@wordpress/eslint-plugin": "^20.0.0",
"@wordpress/jest-preset-default": "^12.6.0",
"@wordpress/prettier-config": "^4.3.0",
"@wordpress/scripts": "^27.0.0",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.2",
"eslint-import-resolver-node": "^0.3.9",
"fetch-mock": "^11.1.3",
"fetch-mock-jest": "^1.5.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"mini-css-extract-plugin": "^2.9.1",
"postcss": "^8.4.43",
"prop-types": "^15.8.1",
"sass": "^1.77.8",
"sass-loader": "^16.0.1",
"storybook": "^8.2.9",
"style-loader": "^4.0.0",
"svg-react-loader": "^0.4.6",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@mui/material": "^5.16.4",
"@mui/styled-engine-sc": "^6.0.0-alpha.18",
"@mui/x-data-grid": "^7.11.0",
"@react-hook/window-size": "^3.1.1",
"@wordpress/api-fetch": "^7.3.0",
"@wordpress/components": "^28.4.0",
"@wordpress/data": "^10.3.0",
"@wordpress/date": "^5.5.0",
"@wordpress/dom-ready": "^4.3.0",
"@wordpress/element": "^6.3.0",
"@wordpress/i18n": "^5.3.0",
"@wordpress/url": "^4.3.0",
"classnames": "^2.5.1",
"invariant": "^2.2.4",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"react-use": "^17.5.1",
"styled-components": "^6.1.12"
}
}