-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
65 lines (65 loc) · 1.66 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
{
"name": "mosaico-standalone",
"version": "0.3.0",
"private": true,
"description": "Standalone email composer integrating Mosaico.",
"main": "index.js",
"engines": {
"node": ">=18.12.0"
},
"type": "module",
"scripts": {
"start": "node index.js",
"lint": "prettier . --check",
"lint:fix": "prettier . --write",
"test": "prettier . --check && NODE_ENV=test mocha --exit",
"test:watch": "NODE_ENV=test mocha --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lafranceinsoumise/mosaico-standalone-composer.git"
},
"keywords": [
"mosaico",
"email",
"composer",
"responsive"
],
"author": "Jill Royer <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/lafranceinsoumise/mosaico-standalone/issues"
},
"homepage": "https://github.com/lafranceinsoumise/mosaico-standalone",
"dependencies": {
"bluebird": "^3.7.2",
"body-parser": "^1.20.2",
"connect-redis": "^7.1.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"formidable": "1.1.1",
"gm": "^1.25.0",
"jquery-file-upload-middleware": "^0.1.8",
"mkdirp": "0.3.4",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"mz": "^2.7.0",
"nodemailer": "^6.9.6",
"nodemailer-html-to-text": "^3.2.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"pug": "^3.0.2",
"redis": "^4.6.10",
"request": "^2.88.2",
"sanitize-html": "^2.11.0",
"sqlite": "^5.0.1",
"sqlite3": "^5.1.6",
"uuid": "^9.0.1",
"validator": "^13.11.0"
},
"devDependencies": {
"mocha": "^10.2.0",
"prettier": "3.0.3",
"supertest": "^6.3.3"
}
}