-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.69 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
{
"name": "cardmesh-rest-api",
"version": "1.0.4",
"description": "CardMesh is an app aimed at modernizing the sharing of business cards within a company. It displays digital business cards in a web browser, accessible via NFC tags, QR codes, or direct URLs.",
"author": "Mathias Reker",
"license": "MIT",
"main": "server.js",
"type": "module",
"repository": {
"type": "git",
"url": "git@github.com:CardMesh/rest-api.git"
},
"bugs": {
"url": "https://github.com/cardmesh/rest-api/issues"
},
"homepage": "https://github.com/cardmesh/rest-api",
"scripts": {
"start": "node server.js --omit=dev",
"dev": "cross-env nodemon server.js",
"db:init": "node src/scripts/ddl.js",
"format": "eslint . --fix --ext .js",
"lint": "eslint . --ext .js",
"test:unit": "mocha ./tests/unit",
"test:it": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --testTimeout=5000 --forceExit",
"test": "npm run test:unit && npm run test:it"
},
"dependencies": {
"argon2": "^0.31.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"express-fileupload": "^1.4.3",
"express-rate-limit": "^7.1.5",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mjml": "^4.15.2",
"mongo-sanitize": "^1.1.0",
"mongoose": "^8.1.1",
"mustache": "^4.2.0",
"nodemailer": "^6.9.9",
"sanitize-html": "^2.11.0",
"sharp": "^0.33.2"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"mocha": "^10.2.0",
"supertest": "^6.3.4"
}
}