-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.68 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
{
"name": "blognode",
"version": "0.0.1",
"repository": "https://github.com/BATTLEHAWK00/BlogNode-dev.git",
"preferUnplugged": true,
"scripts": {
"start": "cross-env NODE_ENV=development && ts-node -r tsconfig-paths/register bin/start.ts",
"start:debug": "cross-env NODE_ENV=development && blognode start --loglevel=debug",
"start:trace": "cross-env NODE_ENV=development && blognode start --loglevel=trace",
"start:dev": "nodemon --config config/nodemon.json bin/entry.ts -- start",
"start:dev:debug": "nodemon --config ./config/nodemon.json bin/entry.ts -- start --loglevel=debug",
"start:dev:trace": "nodemon --config ./config/nodemon.json bin/entry.ts -- start --loglevel=trace",
"build": "ts-node-esm --swc bin/build.ts",
"build:d": "tsc --emitDeclarationOnly",
"test": "mocha -r ts-node/register -r tsconfig-paths/register test/**/test.ts"
},
"dependencies": {
"@fastify/autoload": "^5.2.0",
"@fastify/caching": "^8.0.1",
"@fastify/compress": "^6.1.1",
"@fastify/cookie": "^8.0.0",
"@fastify/csrf-protection": "^5.1.0",
"@fastify/helmet": "^9.1.0",
"@fastify/http-proxy": "^8.2.2",
"@fastify/multipart": "^7.1.1",
"@fastify/rate-limit": "^7.3.0",
"@fastify/static": "^6.5.0",
"@fastify/url-data": "^5.1.0",
"@fastify/websocket": "^7.0.1",
"agenda": "^4.3.0",
"awilix": "^7.0.3",
"cac": "^6.7.12",
"chalk": "^5.0.1",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.4",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"eventemitter2": "^6.4.9",
"fastify": "^4.5.3",
"fastify-plugin": "^4.2.1",
"glob": "^8.0.3",
"i18n": "^0.15.0",
"joi": "^17.6.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"log4js": "^6.5.2",
"lru-cache": "^7.10.1",
"markdown-it": "^13.0.1",
"minio": "^7.0.28",
"mongoose": "^6.3.5",
"nodemailer": "^6.7.5",
"piscina": "^3.2.0",
"workerpool": "^6.3.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.17.12",
"@swc/core": "^1.2.245",
"@types/crypto-js": "^4.1.1",
"@types/ejs": "^3.1.1",
"@types/eventemitter2": "^4.1.0",
"@types/gulp": "^4.0.9",
"@types/i18n": "^0.13.3",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.182",
"@types/lru-cache": "^7.10.10",
"@types/markdown-it": "^12.2.3",
"@types/minio": "^7.0.13",
"@types/mongodb": "^4.0.7",
"@types/mysql": "^2.15.21",
"@types/node": "^18.11.15",
"@types/nodemailer": "^6.4.4",
"@types/workerpool": "^6.1.0",
"esbuild": "^0.14.50",
"esbuild-plugin-alias-path": "^1.1.1",
"gulp": "^4.0.2",
"ts-node": "^10.9.1",
"ts-paths-esm-loader": "^1.3.1",
"tsconfig-paths": "^4.1.1"
}
}