-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
69 lines (69 loc) · 1.91 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
{
"name": "@edx/react-unit-test-utils",
"version": "1.0.0-semantically-released",
"description": "React toolkit for writing and testing react components",
"main": "dist/index.js",
"release": {
"branches": [
"main",
"next"
]
},
"files": [
"/dist"
],
"scripts": {
"build": "make build",
"lint": "fedx-scripts eslint --ext .jsx,.js src/",
"lint-fix": "fedx-scripts eslint --fix --ext .jsx,.js src/",
"test": "TZ=GMT fedx-scripts jest --coverage --passWithNoTests"
},
"author": "muselesscreator",
"license": "AGPL-3.0",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openedx/react-unit-test-utils.git"
},
"homepage": "https://github.com/openedx/react-unit-test-utils#README",
"browserslist": [
"extends @edx/browserslist-config"
],
"dependencies": {
"@edx/browserslist-config": "^1.1.1",
"@reduxjs/toolkit": "^1.5.1",
"@testing-library/dom": "^9.3.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"classnames": "^2.2.6",
"core-js": "3.6.5",
"lodash": "^4.17.21",
"react-dev-utils": "^12.0.1",
"react-test-renderer": "17.0.2"
},
"devDependencies": {
"@edx/browserslist-config": "^1.1.1",
"@edx/frontend-platform": "^8.0.0",
"@openedx/frontend-build": "^14.0.3",
"@openedx/paragon": "22.0.0",
"axios": "^1.4.0",
"es-check": "^2.3.0",
"husky": "2.7.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"semantic-release": "^19.0.3",
"ts-jest": "^29.1.2"
},
"peerDependencies": {
"@edx/frontend-platform": "^8.0.0",
"@openedx/frontend-build": "^14.0.0",
"@openedx/paragon": "^21.5.7 || ^22.0.0",
"react": "^16.9.0 || ^17.0.0"
}
}