This repository has been archived by the owner on Nov 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 2.53 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
75
76
77
78
79
80
81
82
83
84
{
"private": true,
"scripts": {
"husky": "husky install",
"clean": "rimraf build/",
"prebuild": "yarn prepare",
"build": "tsc --project .",
"postinstall": "yarn husky",
"prestart": "yarn migrate up",
"prepare": "ts-patch install -s",
"lint": "eslint src/**/*.ts --cache",
"test": "cross-env NODE_ENV=test ava",
"migrate": "./bin/goose -dir=migrations -s postgres",
"start": "cross-env NODE_ENV=production node ./build/server.js",
"license:compliance": "license-compliance --production --direct",
"docker:build": "docker build . -t polygon-isecure/core:local --no-cache",
"api:graph": "express-router-dependency-graph --rootDir=./src/ --format=markdown",
"dev": "yarn prepare && cross-env NODE_ENV=development nodemon --files ./src/server.ts"
},
"dependencies": {
"@node-rs/bcrypt": "^1.5.1",
"@trycourier/courier": "^3.2.0",
"chalk": "~4.1.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"date-fns": "^2.28.0",
"deep-email-validator-extended": "^0.2.0",
"env-var": "^7.1.1",
"express": "^4.17.1",
"handlebars": "^4.7.7",
"helmet": "^5.0.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"nodemailer": "^6.7.2",
"pg": "^8.7.1",
"redis": "^4.0.0",
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0",
"uuid-validate": "^0.0.3",
"yaml": "^1.10.2",
"zod": "^3.11.6"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.3",
"@types/compression": "^1.7.1",
"@types/cors": "^2.8.12",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.6",
"@types/lodash": "^4.14.177",
"@types/node": "^17.0.4",
"@types/nodemailer": "^6.4.4",
"@types/pg": "^8.6.1",
"@types/redis": "^4.0.11",
"@types/uuid-validate": "^0.0.1",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"ava": "^4.0.0",
"errorhandler": "^1.5.1",
"eslint": "^8.4.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"express-router-dependency-graph": "^1.1.1",
"husky": "^7.0.4",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"ts-patch": "^2.0.1",
"typescript": "^4.5.2",
"typescript-transform-paths": "^3.3.1"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}