-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (31 loc) · 852 Bytes
/
package.json
File metadata and controls
32 lines (31 loc) · 852 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
{
"title": "Stock Management API",
"name": "stockapi",
"version": "1.0.0",
"description": "Stock Management System",
"main": "index.js",
"scripts": {
"start": "node index.js",
"debug": "DEBUG=* nodemon",
"setup-production":"pnpm install --prefix ./client --production=false && pnpm build --prefix ./client && npm install"
},
"keywords": [],
"author": "Clarusway",
"license": "ISC Licence",
"dependencies": {
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"fs": "^0.0.1-security",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.6.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.7",
"redoc-express": "^2.1.0",
"swagger-autogen": "^2.23.6",
"swagger-ui-express": "^5.0.0"
}
}