-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.58 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.58 KB
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
{
"name": "e-commerce-api",
"version": "1.0.0",
"description": "Develop a robust backend application using Node.js, Express, MongoDB, and integrate a 3rd-party API to enhance the functionality of the application (An E-commerce Platform).",
"main": "index.js",
"scripts": {
"start": "npx ts-node src/index.ts",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"seed": "ts-node src/utils/seedData.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jxwatson251/E-Commerce-API.git"
},
"keywords": ["CRUD", "API"],
"author": "Jason A. Watson",
"license": "CITC",
"bugs": {
"url": "https://github.com/jxwatson251/E-Commerce-API/issues"
},
"homepage": "https://github.com/jxwatson251/E-Commerce-API#readme",
"dependencies": {
"axios": "^1.9.0",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.2",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.15.1",
"nodemailer": "^7.0.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@types/axios": "^0.9.36",
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^5.0.2",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.15.21",
"@types/nodemailer": "^6.4.17",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"jest": "^29.7.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
}
}