-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.21 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
{
"name": "bugomattic",
"author": "Automattic Inc.",
"description": "A guidance tool for bug reporters in a large, complex organization.",
"version": "0.1.0",
"private": true,
"bugs": "https://github.com/Automattic/bugomattic/issues",
"homepage": "https://github.com/Automattic/bugomattic",
"license": "GPL-2.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/Automattic/bugomattic.git",
"directory": "/"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && node bin/prepare-a8c-deploy.js",
"test": "react-scripts test",
"test:once": "react-scripts test --watchAll=false",
"eject": "react-scripts eject",
"distclean": "rm -rf node_modules build .yarn/cache .yarn/install-state.gz",
"postinstall": "husky install",
"lint": "yarn eslint . && yarn prettier --check src/**/*.css",
"lint:fix": "yarn eslint --fix . && yarn prettier --write src/**/*.css"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "[email protected]",
"jest": {
"transformIgnorePatterns": [
"/node_modules/(?!(url-join|history)/)"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"<rootDir>/src/setupTests.ts",
"<rootDir>/src/index.tsx",
"<rootDir>/src/test-utils",
"<rootDir>/src/monitoring/report-web-vitals.ts",
"<rootDir>/src/monitoring/local-monitoring-client.ts",
"<rootDir>/src/api/local-api-client.ts"
]
},
"dependencies": {
"@floating-ui/react": "^0.23.0",
"@reduxjs/toolkit": "^1.8.6",
"@types/lodash.debounce": "^4.0.7",
"@types/node": "^16.7.13",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"date-fns": "^2.29.3",
"deep-equal": "^2.2.1",
"history": "^5.3.0",
"lodash.debounce": "^4.0.8",
"lodash.words": "^4.2.0",
"path-browserify": "^1.0.1",
"qs": "^6.11.0",
"react": "^18.2.0",
"react-confetti": "^6.1.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-redux": "^8.0.4",
"react-scripts": "5.0.1",
"react-tooltip": "^5.8.3",
"stopword": "^2.0.8",
"url-join": "^5.0.0",
"web-vitals": "^2.1.0"
},
"devDependencies": {
"@jest/environment": "^27.4.3",
"@jest/types": "^27.4.3",
"@testing-library/dom": "^8.19.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/deep-equal": "^1.0.1",
"@types/jest": "^29.1.2",
"@types/lodash.words": "^4.2.7",
"@types/path-browserify": "^1.0.0",
"@types/stopword": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-md": "^1.0.19",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-testing-library": "^5.9.1",
"husky": "^8.0.0",
"jest-environment-jsdom": "^27.4.3",
"lint-staged": "^13.0.3",
"miragejs": "^0.1.47",
"prettier": "npm:wp-prettier@latest",
"typescript": "^4.8.4"
}
}