-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 901 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 901 Bytes
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
{
"name": "node",
"version": "1.0.0",
"description": "ecommerce",
"main": "server.js",
"scripts": {
"start": "nodemon --watch backend --exec babel-node backend/server.js",
"build": "rm -rf dist && babel backend -d dist",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm run build && cd frontend && npm install && npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"debug": "^4.3.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.8.11",
"multer": "^1.4.4"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"eslint": "^8.4.1",
"eslint-plugin-react": "^7.27.1",
"nodemon": "^2.0.2"
},
"engines": {
"node": "16.11.0",
"npm": "8.0.0"
}
}