-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "empoze",
"version": "1.0.0",
"description": "Compose emails from react and tailwind",
"main": "index.js",
"config": {
"dist": "dist",
"deploy": "deploy",
"src": "src"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"pack": "webpack",
"css": "mailwind --input-html ./deploy/email.html --output-css ./deploy/email.css",
"deploy": "node ./deploy/app.js ",
"prod": "npm run pack && npm run deploy && npm run css && npm run deploy"
},
"keywords": [
"email",
"tailwind",
"react"
],
"author": "Kolism",
"license": "MIT",
"devDependencies": {
"react-dom": "^17.0.2",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"juice": "^8.0.0",
"react": "^17.0.2",
"regenerator-runtime": "^0.11.1",
"webpack": "^5.68.0"
}
}