-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
99 lines (99 loc) · 3.45 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
{
"name": "plashiki-backend",
"version": "3.0.0",
"main": "dist/src/index.js",
"license": "GPL-3.0",
"author": {
"email": "me@tei.su",
"name": "teidesu"
},
"scripts": {
"run": "yarn run build:ts && node dist/src/index.js",
"test": "yarn run build && yarn run test:dirty",
"test:dirty": "mocha dist/tests/**/*.spec.js",
"dev": "nodemon",
"dev:docs": "vuepress dev docs",
"generate-spec": "yarn build:ts && node dist/scripts/generate-spec.js",
"lint": "eslint src/**/*.ts",
"build": "yarn run build:ts && yarn run build:static",
"build:ts": "tsc --project tsconfig.json && yarn build:paths",
"build:paths": "tscpaths -p tsconfig.json -s . -o dist",
"build:static": "copyfiles src/templates/**/* dist",
"build:docs": "vuepress build docs",
"create-migration": "yarn run build:ts && node dist/scripts/generate-migration.js"
},
"dependencies": {
"@teidesu/anitomy-js": "^4.1.2",
"acorn": "^8.0.4",
"bullmq": "^1.10.0",
"cheerio": "^1.0.0-rc.3",
"class-transformer": "^0.3.1",
"class-validator": "https://registry.npmjs.org/@teidesu/class-validator/-/class-validator-0.11.0.tgz#a5ed62a15206b9d9972f636f437211a45b8fbc09",
"dotenv": "^8.2.0",
"escape-string-regexp": "^4.0.0",
"form-data": "^3.0.0",
"fuzzball": "^1.3.0",
"glob": "^7.1.6",
"handlebars": "^4.7.2",
"html-minifier": "^4.0.0",
"ioredis": "^4.19.2",
"jsdom": "^16.2.2",
"json5": "^2.1.3",
"juice": "^6.0.0",
"koa": "^2.13.0",
"koa-bodyparser": "^4.2.1",
"koa-ratelimit": "^4.2.1",
"koa-router": "^7.4.0",
"minimatch": "^3.0.4",
"node-fetch": "^2.6.1",
"abort-controller": "^3.0.0",
"node-schedule": "^1.3.2",
"normalize-url": "^5.3.0",
"path-to-regexp": "^6.1.0",
"pg": "^8.5.0",
"protoflex": "^0.2.1",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.8.1-alpha.2",
"socks": "^2.3.3",
"socks-proxy-agent": "^4.0.2",
"typeorm": "^0.2.29",
"typescript": "^4.0.5",
"validator": "^12.1.0",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0",
"ws": "^7.4.0",
"puppeteer": "^5.2.1"
},
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/cheerio": "^0.22.15",
"@types/escape-html": "^0.0.20",
"@types/glob": "^7.1.1",
"@types/handlebars": "^4.1.0",
"@types/html-minifier": "^3.5.3",
"@types/ioredis": "^4.14.3",
"@types/jsdom": "^16.2.1",
"@types/koa": "^2.11.0",
"@types/koa-bodyparser": "^4.3.0",
"@types/minimatch": "^3.0.3",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.17",
"@types/node-fetch": "^2.5.4",
"@types/node-schedule": "^1.3.0",
"@types/nodemailer": "^6.4.0",
"@types/pg": "^7.11.2",
"@types/ws": "^6.0.4",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"simple-proxy-agent": "^1.0.7",
"chai": "^4.2.0",
"copyfiles": "^2.1.1",
"eslint": "^6.7.2",
"mocha": "^6.2.2",
"nodemon": "^2.0.2",
"ts-node": "^8.5.4",
"tsconfig-paths": "^3.9.0",
"tscpaths": "^0.0.9",
"vuepress": "^1.4.0"
}
}