-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1007 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1007 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
36
37
38
39
{
"name": "amazona",
"type": "module",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "cd frontend && npm install --legacy-peer-deps && npm run build",
"start": "nodemon --watch backend --exec node --experimental-modules backend/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akashkriplani/e-commerce-app.git"
},
"engines": {
"node": "12.4.0",
"npm": "6.9.0"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/akashkriplani/e-commerce-app/issues"
},
"homepage": "https://github.com/akashkriplani/e-commerce-app#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.9.2",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"eslint": "^8.34.0",
"eslint-plugin-react": "^7.32.2",
"nodemon": "^2.0.20"
}
}