-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.25 KB
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
{
"name": "react-testing-library-tutorial",
"version": "1.0.0",
"description": "Walkthrough of React Testing Library Tutorial by Robin Wieruch",
"main": "index.js",
"scripts": {
"test": "npx jest client/test/.*test.js",
"server-dev": "npx nodemon --watch server server/index.js",
"react-dev": "webpack --mode development --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jojortz/react-testing-library-tutorial.git"
},
"author": "Jose Ortiz",
"license": "ISC",
"bugs": {
"url": "https://github.com/jojortz/react-testing-library-tutorial/issues"
},
"homepage": "https://github.com/jojortz/react-testing-library-tutorial#readme",
"dependencies": {
"axios": "^1.3.4",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"path": "^0.12.7",
"react": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@testing-library/react": "^14.0.0",
"babel-loader": "^8.2.5",
"babel-plugin-styled-components": "^2.0.7",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"nodemon": "^2.0.20",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
}
}