forked from ViBiOh/mjml-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.41 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.41 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
{
"name": "mjml-api",
"version": "1.0.0",
"description": "MJML API Conversion",
"repository": "https://github.com/ViBiOh/mjml-api",
"main": "dist/index.js",
"scripts": {
"init": "curl --disable --silent --show-error --location --max-time 30 'https://raw.githubusercontent.com/ViBiOh/scripts/main/bootstrap' | bash -s 'git_hooks'",
"format": "./node_modules/prettier/bin/prettier.cjs --write \"src/**/*.js\"",
"style": "./node_modules/eslint/bin/eslint.js --fix \"src/**/*.js\"",
"build": "./node_modules/@babel/cli/bin/babel.js src --out-dir dist",
"start": "./node_modules/@babel/node/bin/babel-node.js src/index.js"
},
"keywords": [
"mjml",
"api",
"conversion"
],
"author": "ViBiOh",
"license": "ISC",
"dependencies": {
"body-parser": "1.20.2",
"express": "4.18.2",
"express-prom-bundle": "6.6.0",
"mjml": "4.14.1",
"prom-client": "14.2.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@babel/cli": "7.22.10",
"@babel/core": "7.22.10",
"@babel/eslint-parser": "7.22.10",
"@babel/node": "7.22.10",
"@babel/preset-env": "7.22.10",
"@babel/register": "7.22.5",
"@babel/runtime": "7.22.10",
"eslint": "8.47.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.0",
"prettier": "3.0.2"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
}
}