-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "js-test-examples",
"version": "1.0.0",
"description": "Jest and React Testing Library examples",
"main": "index.js",
"scripts": {
"start": "parcel index.html",
"test": "clear && jest"
},
"browserslist": [
"last 1 Chrome version"
],
"keywords": [
"jest",
"react",
"react testing library",
"javascript",
"testing",
"tests"
],
"author": "Lauren Burdock",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.14.5",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^13.1.9",
"babel-jest": "^27.0.2",
"eslint": "^7.28.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.4",
"jest-transform-stub": "^2.0.0",
"parcel-bundler": "^1.12.5",
"prettier": "^2.3.1",
"regenerator-runtime": "^0.13.7"
},
"dependencies": {
"date-fns": "^2.22.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}