-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 2.11 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
{
"name": "nodejs-backend-structure-modular-js",
"version": "1.0.0",
"description": "Node JS Backend Application in Modular and structured way",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"test": "NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest",
"db:up": "docker run -d --name NEMBBMS-JS -p 27501:27017 -e MONGO_INITDB_ROOT_USERNAME=archetype -e MONGO_INITDB_ROOT_PASSWORD=archetype mongo:latest",
"db:down": "docker stop NEMBBMS-JS",
"db:purge": "docker rm NEMBBMS-JS",
"build:email": "mjml emails/mjml/*.mjml -o emails/html",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ehsanagh/nodejs-backend-structure-modular-JS.git"
},
"type": "module",
"keywords": [
"NodeJS",
"Express",
"Back-End",
"Modular",
"Express"
],
"author": "Ehsan Aghaei",
"license": "MIT",
"bugs": {
"url": "https://github.com/ehsanagh/nodejs-backend-structure-modular-JS/issues"
},
"jest": {
"bail": true,
"verbose": true,
"testTimeout": 30000,
"testEnvironment": "node",
"globalSetup": "<rootDir>/jest/global-setup.js",
"globalTeardown": "<rootDir>/jest/global-teardown.js",
"setupFilesAfterEnv": [
"<rootDir>/jest/setupFile.js"
]
},
"homepage": "https://github.com/ehsanagh/nodejs-backend-structure-modular-JS#readme",
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.1",
"lodash": "^4.17.21",
"mjml": "^4.14.1",
"mongoose": "^7.0.4",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2"
},
"devDependencies": {
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"jest-circus": "^29.5.0",
"mongodb-memory-server": "^8.13.0",
"nodemon": "^2.0.22",
"supertest": "^6.3.3"
}
}