-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.66 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "react-template",
"version": "1.0.0",
"description": "Template for Applications using React, Babel, Webpack, Express.js & Dotenv",
"main": "server/index.js",
"scripts": {
"start": "nodemon server/index.js",
"dev:react": "webpack --config ./webpack.config.js --mode development -w",
"test": "jest",
"build": "webpack --mode=production"
},
"author": "Sabrina Gortz",
"license": "UNLICENSED",
"dependencies": {
"axios": "^0.26.1",
"bootstrap": "^5.1.3",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"firebase": "^9.7.0",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.15",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-highlight-words": "^0.18.0",
"react-icons": "^4.3.1",
"react-intersection-observer": "^8.33.1",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.0",
"react-scroll": "^1.8.6",
"use-local-storage": "^2.3.6",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.0.1",
"@testing-library/user-event": "^14.1.0",
"babel-loader": "^8.2.4",
"bundle-js": "^1.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.12.0",
"jest": "^27.5.1",
"style-loader": "^3.3.1",
"url-loader": "^4.1.1",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
}
}