-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "backend",
"version": "1.0.0",
"description": "MERN stack iplogger",
"main": "index.js",
"scripts": {
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"dev": "nodemon src/index.js --exec babel-node",
"client": "cd client && npm start",
"start": "node build/index.js",
"build-backend": "babel src --out-dir build"
},
"keywords": [],
"author": "O$int",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.4.1",
"moment": "^2.29.1",
"mongoose": "^5.12.1",
"morgan": "^1.10.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"request": "^2.88.2",
"request-ip": "^2.1.3"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/node": "^7.13.12",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.13.15",
"@babel/preset-stage-0": "^7.8.3",
"@babel/runtime": "^7.13.10"
}
}