-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.27 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
{
"name": "quickshift-api",
"version": "1.0.0",
"description": "API for QuickShift platform",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"build": "echo 'Build completed successfully'",
"dev": "nodemon src/server.js",
"test": "set NODE_ENV=test && jest",
"test:unix": "NODE_ENV=test jest",
"create-super-admin": "node src/scripts/createSuperAdmin.js",
"postinstall": "echo 'Dependencies installed successfully'",
"deploy:check": "powershell -ExecutionPolicy Bypass -File deploy.ps1",
"deploy:unix": "chmod +x deploy.sh && ./deploy.sh"
},
"author": "",
"license": "ISC",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"dependencies": {
"@sendgrid/mail": "^8.1.5",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.14.1",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"stripe": "^18.2.1",
"uuid": "^11.1.0"
},
"devDependencies": {
"jest": "^29.7.0",
"mongodb-memory-server": "^9.1.3",
"nodemon": "^3.0.2",
"supertest": "^6.3.3"
},
"jest": {
"testEnvironment": "node",
"testTimeout": 10000
}
}