-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "nodejstutorial",
"version": "0.0.1",
"description": "Tutorial project for NodeJS demonstrating: Express, Winston, MongoDB with Mongoose, Jest/supertest/mongodb-memory-server, CI/CD with GitHub Actions, Docker, Docker-Compose.",
"scripts": {
"start": "node start.js",
"test": "jest --verbose",
"test-coverage": "jest --coverage",
"test-ci": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/tsmx/nodejs-tutorial.git"
},
"keywords": [
"NodeJS",
"Docker",
"Docker Compose",
"MongoDB",
"Mongoose",
"Tutorial",
"Winston",
"Jest",
"supertest",
"mongodb-memory-server",
"GitHub Actions",
"eslint"
],
"author": "tsmx <dev@tsmx.net>",
"license": "MIT",
"dependencies": {
"express": "^4.19.0",
"mongoose": "^8.5.0",
"winston": "^3.13.0"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"eslint": "^9.8.0",
"eslint-plugin-jest": "^28.7.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.0.0",
"supertest": "^7.0.0"
}
}