-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 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
56
57
58
59
60
61
62
63
64
{
"name": "matters-email",
"version": "2.1.2",
"engines": {
"node": ">=18 <19.0"
},
"description": "Use mjml to generate and update sendgrid dynamic templates",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:thematters/matters-email.git"
},
"scripts": {
"start": "gulp",
"build": "gulp build",
"upload:dev": "ts-node --files src/updateEmailTemplates.ts",
"upload:prod": "MATTERS_ENV='production' ts-node --files src/updateEmailTemplates.ts",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"lint": "eslint . --ext .ts,.tsx"
},
"author": "",
"license": "UNLICENSED",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"browser-sync": "^2.26.12",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"gulp": "^4.0.2",
"gulp-html-i18n": "^0.16.0",
"gulp-mjml": "^4.0.2",
"husky": "^4.3.0",
"minimist": "^1.2.5",
"mjml": "^4.7.1",
"npx": "^10.2.2",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
},
"dependencies": {
"@types/request": "^2.48.5",
"@types/request-promise-native": "^1.0.17",
"dotenv": "^8.2.0",
"module-alias": "^2.2.2",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"ts-node": "^9.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run build",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prettier": {
"singleQuote": true,
"semi": false
}
}