-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.38 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.38 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
{
"name": "createapp-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"clean": "rm dist/bundle.js",
"build-dev": "webpack --mode development",
"build-prod": "webpack --mode production",
"dev": "webpack-dev-server --mode=development",
"dev:react": "webpack --config ./webpack.config.js --mode development -w ",
"server": "nodemon server/index.js",
"test": "jest"
},
"dependencies": {
"axios": "^0.27.2",
"bootstrap": "^5.1.3",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"firebase": "^9.8.0",
"jquery": "^3.6.0",
"lodash": "^4.17.21",
"moment": "^2.29.3",
"mongoose": "^6.3.2",
"morgan": "^1.10.0",
"nodemon": "^2.0.16",
"popper.js": "^1.16.1",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"babel-jest": "^28.1.0",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"eslint": "^8.14.0",
"eslint-plugin-react": "^7.29.4",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.0",
"lodash-webpack-plugin": "^0.11.6",
"style-loader": "^3.3.1",
"url-loader": "^4.1.1",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
}
}