-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.37 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
74
{
"name": "@kudoo/email",
"version": "2.1.0",
"description": "The Kudoo library for dealing with email. Allows adding PDF attachments and i18n of emails",
"main": "build/index.js",
"typings": "./index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "concurrently --kill-others \"npm run chokidar\" \"npm run dev\"",
"dev": "nodemon dotenv_config_path=.env.development --exec \"babel-node --extensions '.ts' -r node_modules/dotenv/config ./src/server.ts \"",
"build": "rimraf build && babel --extensions '.ts' src --out-dir build --ignore \"src/**/**/*.d.ts\" && npm run copy-views-dir",
"copy-views-dir": "ncp ./src/views ./build/views && rimraf ./build/views/emails/*.ts",
"copy-d-ts-files": "copyfiles -u 1 \"./src/**/*.d.ts\" ./build",
"chokidar": "cd node_modules/@kudoo/graphql/src && chokidar \"services/**/*.js\" -c \"npm run build\"",
"prepublishOnly": "npm run build",
"version": "auto-changelog -p && git add CHANGELOG.md",
"release": "np --yolo --no-yarn"
},
"author": "Kudoo Cloud Pty Ltd",
"license": "MIT",
"dependencies": {
"@kudoo/graphql": "^2.0.24",
"@sendgrid/mail": "^6.3.1",
"@types/ejs": "^2.6.1",
"apollo-link": "^1.2.3",
"apollo-link-http": "1.5.7",
"body-parser": "^1.18.3",
"copyfiles": "^2.1.0",
"cross-fetch": "^2.2.2",
"dotenv": "^6.0.0",
"ejs": "^2.6.1",
"express": "^4.16.3",
"graphql": "^14.0.2",
"lodash": "^4.17.14",
"mjml": "^4.5.0",
"ncp": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-async-to-generator": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-typescript": "^7.1.0",
"@types/mjml": "^4.0.2",
"auto-changelog": "^1.12.0",
"babel-plugin-import-graphql": "^2.6.2",
"babel-plugin-module-resolver": "^3.1.1",
"chokidar-cli": "^1.2.2",
"concurrently": "^4.0.1",
"nodemon": "^1.18.7",
"np": "^4.0.2",
"rimraf": "^2.6.3",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KudooCloud/kudoo-email.git"
},
"keywords": [
"email",
"i18n",
"pdf"
],
"bugs": {
"url": "https://github.com/KudooCloud/kudoo-email/issues"
},
"homepage": "https://github.com/KudooCloud/kudoo-email#readme",
"publishConfig": {
"access": "public"
}
}