-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 790 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 790 Bytes
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
{
"name": "jestpro",
"version": "1.0.0",
"description": "this for Testing Course",
"main": "index.js",
"scripts": {
"test": "jest --watchAll"
},
"author": "HUSSEIN",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.21.4",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^13.3.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"html"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"testEnvironment": "jest-environment-jsdom"
}
}