-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.66 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.66 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
54
55
56
{
"name": "nodejs-simple-notes-app",
"version": "1.0.0",
"main": "src/notes-api-server.js",
"type": "module",
"engines": {
"node": ">=20.19.0",
"npm": ">=10.0.0"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"test:coverage:open": "npm run test:coverage && xdg-open coverage/lcov-report/index.html",
"start": "node src/notes-api-server.js",
"docs": "jsdoc -c jsdoc.config.json && node scripts/fix-docs-title.js",
"docs:watch": "jsdoc -c jsdoc.config.json --watch",
"docs:version": "node scripts/version-docs.js",
"docs:serve": "cd docs && python3 -m http.server 8080",
"release:docs": "npm run docs && npm run docs:version"
},
"keywords": [
"nodejs",
"express",
"notes-api",
"restful-api",
"couchdb",
"mongodb",
"nosql",
"database-agnostic",
"crud-api",
"web-ui"
],
"author": "Vadim Starichkov <starichkovva@gmail.com>",
"license": "MIT",
"description": "RESTful Notes API with Node.js, Express, and NoSQL databases (CouchDB/MongoDB) - database-agnostic architecture with web UI",
"repository": {
"type": "git",
"url": "https://github.com/starichkov/nodejs-simple-notes-app.git"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"helmet": "^8.1.0",
"mongoose": "^9.1.3",
"nano": "^11.0.3"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@types/jest": "^30.0.0",
"jest": "^30.2.0",
"jsdoc": "^4.0.5",
"supertest": "^7.2.2",
"testcontainers": "^11.11.0"
}
}