-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.23 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "justremove",
"version": "0.0.1",
"description": "Remove image backgrounds",
"private": true,
"keywords": [],
"author": "Aryansh Malviya",
"license": "ISC",
"scripts": {
"todo": "echo 'have to make a production config for webpack'",
"clean": "rm dist/bundle/js",
"build-dev": "webpack --env API_URL=http://localhost:7979 --mode development --config webpack.config.js",
"build-prod": "webpack --env API_URL=https://justremove-api.onrender.com --mode production",
"start-live": "webpack serve"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/express-serve-static-core": "^4.17.31",
"@types/lodash": "^4.14.188",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@types/react-is": "^17.0.3",
"babel-core": "^6.26.3",
"babel-loader": "^9.1.0",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-env": "^1.7.0",
"css-loader": "^6.7.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"json5": "^2.2.1",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"lodash-webpack-plugin": "^0.11.6",
"mini-css-extract-plugin": "^2.6.1",
"style-loader": "^3.3.1",
"toml": "^3.0.0",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"url-loader": "^4.1.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-node-externals": "^3.0.0",
"yamljs": "^0.3.0"
},
"dependencies": {
"axios": "^0.27.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"filepond": "^4.30.4",
"helmet": "^6.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"mongodb": "^4.11.0",
"mongoose": "^6.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-filepond": "^7.1.2",
"react-is": "^18.2.0"
}
}