-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.27 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
66
67
68
69
70
71
72
73
{
"name": "visphere-mail-parser",
"version": "1.0.0",
"scripts": {
"start:dev": "webpack --watch --progress --config .webpack/webpack-dev.config.cjs",
"docker:dev": "webpack --progress --config .webpack/webpack-prod.config.cjs",
"docker:prod": "yarn run docker:dev",
"lint:check": "npx eslint src/**/*.{ts,js,cjs}",
"lint:fix": "npx eslint src/**/*.{ts,js,cjs} --fix",
"format": "npx prettier . --write",
"types:check": "npx tsc --noEmit",
"husky:add-pre-commit": "npx husky add .husky/pre-commit \"npx --no-install lint-staged\"",
"husky:add-pre-push": "npx husky add .husky/pre-push \"yarn run types:check\"",
"configure:husky": "npx husky install && yarn run husky:add-pre-commit && yarn run husky:add-pre-push"
},
"private": true,
"author": {
"name": "Visphere",
"email": "info@visphere.pl",
"url": "https://visphere.pl"
},
"lint-staged": {
"**/*.{ts,js,cjs}": [
"yarn run lint:fix",
"yarn run format"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run types:check"
}
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
"@types/express": "^4.17.20",
"@types/html-minifier": "^4.0.4",
"@types/mjml": "^4.7.3",
"@types/node": "^20.8.10",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.53.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"nodemon-webpack-plugin": "^4.8.2",
"prettier": "^3.0.3",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"html-minifier": "^4.0.0",
"mjml": "^4.14.1",
"nocache": "^4.0.0",
"winston": "^3.11.0"
}
}