-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
69 lines (69 loc) · 2.4 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
{
"name": "zaqar",
"version": "2.3.2",
"description": "Simple email microservice built with Node.js",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf ./dist",
"test": "mocha --require ts-node/register --require source-map-support/register --recursive tests/**/*.test.ts",
"coverage": "nyc mocha --require ts-node/register --require source-map-support/register --recursive tests/**/*.test.ts",
"build": "tsc",
"build:debug": "npm run clean && npm run build -- --sourceMap",
"build:clean": "npm run clean && npm run build",
"build:watch": "tsc -w",
"build:start": "npm run build:clean && npm start",
"helm-index": "cd helm && helm package zaqar && helm repo index . --url https://oss.lsantos.dev/zaqar/helm",
"start": "sh ./scripts/install_renderers.sh && node dist/index.js",
"start:debug": "concurrently -s all \"tsc -w\" \"DEBUG=expresso:* nodemon dist/index.js\""
},
"repository": {
"type": "git",
"url": "git@github.com:khaosdoctor/zaqar.git"
},
"author": "Lucas Santos <lhs.santoss@gmail.com>",
"license": "MIT",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.18",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/express-serve-static-core": "^4.17.20",
"@types/mocha": "^8.2.2",
"@types/morgan": "^1.9.2",
"@types/node": "^15.6.1",
"@types/proxyquire": "^1.3.28",
"@types/pug": "^2.0.4",
"@types/sinon": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"axiosist": "^0.10.0",
"chai": "^4.3.4",
"concurrently": "^6.2.0",
"eslint": "^7.27.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"mocha": "^8.4.0",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"prettier": "^2.3.0",
"sinon": "^11.1.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"dependencies": {
"@expresso/app": "^1.2.4",
"@expresso/errors": "^1.3.3",
"@expresso/expresso": "^0.15.1",
"@expresso/server": "^1.1.4",
"@expresso/validator": "^1.1.7",
"@sendgrid/mail": "^7.4.4",
"express-basic-auth": "^1.2.0",
"express-rescue": "^1.1.31",
"reflect-metadata": "^0.1.13",
"require-glob": "^3.2.0",
"sugar-env": "^1.5.14",
"tsyringe": "^4.5.0"
}
}