-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.16 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "enhanced-card-store-backend",
"version": "1.0.0",
"description": "backend to the enhanced card store fronted",
"main": "./src/server.js",
"dependencies": {
"api": "^6.1.1",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"colors": "^1.4.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-fns": "^3.3.1",
"date-fns-tz": "^3.1.3",
"moment": "^2.30.1",
"moment-range": "^4.0.2",
"moment-timezone": "^0.5.45",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.1.0",
"http": "^0.0.1-security",
"image-downloader": "^4.3.0",
"jsonwebtoken": "^9.0.1",
"mongodb": "^5.7.0",
"mongoose": "^7.4.0",
"morgan": "^1.10.0",
"node-cron": "^3.0.2",
"nodemailer": "^6.9.8",
"stripe": "^12.14.0",
"uuid": "^9.0.1",
"winston": "^3.10.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"del": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"fancy-log": "^2.0.0",
"gulp": "^5.0.0",
"gulp-zip": "^6.0.0",
"http-proxy-middleware": "^2.0.6",
"jest": "^29.7.0",
"nodemon": "^2.0.22",
"prettier": "^3.0.0",
"supertest": "^6.3.4",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-stream": "^7.0.0"
},
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"trace-warn": "node src/server.js --trace-warnings ...",
"test": "jest",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint src/ --ext .js,.jsx,.ts,.tsx --fix",
"build": "babel src/ -d dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reedoooo/enhanced-card-store-backend.git"
},
"keywords": [
"node",
"express",
"server",
"enhanced-card-store"
],
"author": "Reed Vogt",
"license": "MIT",
"bugs": {
"url": "https://github.com/reedoooo/enhanced-card-store-backend/issues"
},
"homepage": "https://github.com/reedoooo/enhanced-card-store-backend#readme"
}