forked from pingcap/ossinsight
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.78 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.78 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@ossinsight/email-server",
"version": "0.0.1",
"private": true,
"description": "The email server of OSSInsight.",
"homepage": "https://github.com/pingcap/ossinsight#readme",
"bugs": {
"url": "https://github.com/pingcap/ossinsight/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pingcap/ossinsight.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"build:ts": "tsc",
"dev": "npm run build:ts && concurrently -k -p \"[{name}]\" -n \"TypeScript,App\" -c \"yellow.bold,cyan.bold\" \"npm:watch:ts\" \"npm:dev:start\"",
"dev:start": "fastify start --ignore-watch=.ts$ -w -p 30001 -l debug -P dist/app.js",
"lint": "eslint --cache .",
"lint:ci": "eslint --quiet .",
"lint:fix": "eslint --cache --fix .",
"start": "fastify start -p 30001 -l info dist/app.js",
"test": "npm run build:ts && tsc -p test/tsconfig.json && tap --ts \"test/**/*.test.ts\"",
"watch:ts": "tsc -w"
},
"dependencies": {
"@fastify/autoload": "^5.0.0",
"@fastify/cookie": "^8.3.0",
"@fastify/env": "^4.1.0",
"@fastify/mysql": "^4.0.0",
"@fastify/sensible": "^5.0.0",
"@mailchimp/mailchimp_transactional": "^1.0.50",
"@types/cron": "^2.0.0",
"async": "^3.2.4",
"axios": "^0.27.2",
"bufferutil": "^4.0.7",
"canvas": "^3.0.0",
"cron": "^2.1.0",
"dotenv": "^16.0.3",
"encoding": "^0.1.13",
"fastify": "^4.0.0",
"fastify-cli": "^5.5.1",
"fastify-cron": "^1.3.1",
"fastify-plugin": "^4.3.0",
"html-minifier": "^4.0.0",
"luxon": "^3.1.0",
"mailing": "^0.8.12",
"mailing-core": "^0.8.12",
"mjml": "^4.13.0",
"mjml-react": "^2.0.8",
"mysql2": "^2.3.3",
"next": "^v12.3.2",
"nodemailer": "^6.8.0",
"nodemailer-postmark-transport": "^5.2.1",
"octokit": "^2.0.10",
"postmark": "^3.0.14",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"uglify-js": "^3.17.4",
"utf-8-validate": "^5.0.10"
},
"devDependencies": {
"@types/async": "^3.2.15",
"@types/html-minifier": "^4.0.2",
"@types/luxon": "^3.0.2",
"@types/mjml": "^4.7.0",
"@types/mjml-react": "^2.0.6",
"@types/node": "^18.0.0",
"@types/nodemailer": "^6.4.6",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@types/tap": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"concurrently": "^7.0.0",
"eslint": "^8.27.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.10",
"fastify-tsconfig": "^1.0.1",
"tap": "^16.1.0",
"ts-node": "^10.4.0",
"typescript": "~4.7.0"
}
}