-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.96 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
{
"name": "@apitree.cz/newsletter",
"version": "1.0.0",
"description": "🎄 Ho ho ho!",
"main": "lib/index.js",
"author": "ApiTree s.r.o. <info@apitree.cz>",
"contributors": [
{
"name": "Vít Rozsíval",
"email": "vit.rozsival@apitree.cz"
}
],
"license": "UNLICENSED",
"private": true,
"scripts": {
"build": "run-s build:clean build:ts build:scss",
"build:clean": "rimraf lib",
"build:scss": "sass src/styles/main.scss lib/styles.css",
"build:ts": "tsc --project tsconfig.build.json",
"fix": "run-s ts lint:ts:fix lint:css:fix prettier:fix",
"lint": "run-s ts lint:ts lint:css prettier",
"lint:ts": "eslint --cache --ext js,ts .",
"lint:ts:fix": "yarn lint:ts --fix",
"lint:css": "stylelint './src/styles/*.scss'",
"lint:css:fix": "yarn lint:css --fix",
"prettier": "prettier --check './**/*.{js,json,md,scss}'",
"prettier:fix": "yarn prettier --write",
"render": "RENDER=1 yarn send",
"send": "node lib/index.js",
"send:clean": "rimraf sent.json && yarn send",
"ts": "tsc --project tsconfig.json"
},
"dependencies": {
"consola": "^2.15.3",
"email-templates": "^8.0.8",
"handlebars": "^4.7.7",
"nodemailer": "^6.7.1",
"open": "^8.4.0"
},
"devDependencies": {
"@types/email-templates": "^8.0.4",
"@types/node": "^14",
"@types/nodemailer": "^6.4.4",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^38.0.1",
"eslint-plugin-unused-imports": "^1.1.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"sass": "^1.43.4",
"stylelint": "^13.13.1",
"stylelint-config-sass-guidelines": "^8.0.0",
"typescript": "^4.4.4"
}
}