-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.98 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "jam-comments",
"version": "1.0.1",
"description": "A commenting platform for self-hosted static websites.",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"generate": "json2ts -i schemas/**/* -o generated/ && ts-auto-guard --paths ./generated/*.ts --export-all && ts-auto-guard --paths ./src/**/*.interface.ts --export-all",
"build": "tsc -p tsconfig.json",
"watch": "tsc -p tsconfig.json -w",
"api": "ts-node src/api.ts",
"web": "ts-node src/web.ts",
"cli": "ts-node src/cli.ts",
"sql": "pgtyped -c config.json",
"test": "jest",
"build:sass": "node-sass assets/scss -o public/css --output-style compressed",
"prebuild": "yarn generate",
"postbuild": "copyfiles \"./src/**/*.hbs\" \"./public/**/*\" \"./public/assets/**/*\" build",
"clean": "rm -rf build && rm -rf generated",
"ts-node": "ts-node",
"repl": "ts-node src/repl.ts",
"prettier-format": "prettier --config .prettierrc \"{,!(node_modules|build)/**/}*.ts\" --write",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"lint-fix": "eslint \"./src/**/*.ts\" --fix",
"prestart": "node ./build/src/cli.js db:migrate",
"start": "node ./build/src/web.js",
"start-api": "node ./build/src/api.js",
"func": "func start --verbose",
"zip:app": "zip -q -r webapp.zip . -x@.appserviceignore -x .appserviceignore",
"zip:api": "zip -q -r funcapp.zip . -x@.funcignore -x .funcignore"
},
"repository": "git+https://github.com/teekay/JamComments.git",
"keywords": [],
"author": "teekay <tomas.kohl@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/teekay/JamComments/issues"
},
"homepage": "https://github.com/teekay/JamComments#readme",
"dependencies": {
"@azure/functions": "3.2.0",
"@azure/service-bus": "7.6.0",
"@nestjs/common": "10.*",
"@nestjs/core": "10.*",
"@nestjs/passport": "10.*",
"@nestjs/platform-express": "10.*",
"@ngneat/falso": "2.23.0",
"@pgtyped/cli": "2.*",
"@pgtyped/query": "2.*",
"akismet-api": "5.1.0",
"class-transformer": "0.5.*",
"class-validator": "0.14.*",
"commander": "7.2.0",
"connect-flash": "0.1.1",
"connect-pg-simple": "9.*",
"cookie-parser": "1.4.*",
"csurf": "1.11.0",
"dotenv": "10.0.0",
"express-handlebars": "7.*",
"express-session": "1.18.*",
"handlebars-dateformat": "1.1.3",
"handlebars-helpers": "0.10.0",
"hbs": "4.2.0",
"he": "1.2.0",
"jest": "29.*",
"jsdom": "16.6.0",
"lodash": "4.17.21",
"moment": "2.29.4",
"moment-timezone": "0.5.35",
"nestjs-console": "9.*",
"nestjs-pino": "4.*",
"nodemailer": "6.*",
"nodemailer-mailgun-transport": "2.1.5",
"passport": "0.7.*",
"passport-local": "1.0.0",
"pg": "8.*",
"pg-boss": "9.*",
"pino": "8.*",
"pino-colada": "2.2.2",
"pino-http": "9.*",
"pino-pretty": "10.*",
"postgres-migrations": "5.3.0",
"qs": "6.11.0",
"reflect-metadata": "0.2.*",
"rimraf": "5.*",
"rxjs": "7.*",
"showdown": "2.*",
"uuid": "9.*",
"xss": "1.0.*",
"yargs": "17.*"
},
"devDependencies": {
"@nestjs/cli": "10.*",
"@nestjs/schematics": "10.*",
"@nestjs/testing": "10.*",
"@types/connect-flash": "0.0.40",
"@types/express": "4.*",
"@types/express-session": "1.18.*",
"@types/jest": "28.1.4",
"@types/jsdom": "16.2.11",
"@types/lodash": "4.14.170",
"@types/multer": "1.4.*",
"@types/node": "20.*",
"@types/nodemailer": "6.4.*",
"@types/passport": "1.0.*",
"@types/passport-local": "1.0.*",
"@types/pg": "8.*",
"@types/showdown": "2.*",
"@types/uuid": "9.*",
"@types/yargs": "17.0.*",
"@typescript-eslint/eslint-plugin": "7.*",
"@typescript-eslint/parser": "7.*",
"copyfiles": "2.4.1",
"eslint": "8.*",
"json-schema-to-typescript": "13.*",
"node-sass": "9.*",
"prettier": "2.3.0",
"ts-auto-guard": "4.*",
"ts-jest": "29.*",
"ts-node": "10.*",
"typescript": "4.*",
"webpack": "5.*"
}
}