-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 924 Bytes
/
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
{
"name": "webpack-email-template",
"version": "1.0.0",
"description": "A simple webpack project to start creating an email template.",
"main": "src/index.js",
"scripts": {
"serve": "webpack serve",
"build": "webpack",
"production": "set NODE_ENV=production && webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/efimov-it/webpack-email-template.git"
},
"keywords": [
"webpack",
"email",
"template"
],
"author": "Petr Efimov (@efimov-it)",
"license": "MIT",
"bugs": {
"url": "https://github.com/efimov-it/webpack-email-template/issues"
},
"homepage": "https://github.com/efimov-it/webpack-email-template#readme",
"devDependencies": {
"base64-inline-loader": "^1.1.1",
"html-webpack-plugin": "^5.3.1",
"raw-loader": "^4.0.2",
"webpack": "^5.36.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
}
}