-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.62 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
{
"name": "siteparser",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.8.3",
"@types/turndown": "^5.0.0",
"axios": "^0.21.1",
"cron": "^1.8.2",
"dotenv": "^8.2.0",
"koa": "^2.12.0",
"koa-body": "^4.1.3",
"koa-compress": "^4.0.1",
"koa-pug": "^4.0.3",
"koa-router": "^8.0.8",
"koa-static": "^5.0.0",
"moment": "^2.26.0",
"mysql2": "^2.1.0",
"node-html-parser": "^1.2.16",
"qs": "^6.9.4",
"telegraf": "^3.38.0",
"turndown": "^6.0.0",
"typeorm": "^0.2.25"
},
"scripts": {
"start": "node ./dist/index.js",
"browsersync": "node browsersync.js",
"dev": "yarn watch & yarn browsersync",
"build": "NODE_ENV=production yarn build:ts & yarn build:client && yarn build:compress",
"build:ts": "tsc",
"build:compress": "precompress public/*",
"watch:client": "NODE_ENV=development yarn webpack -w --progress",
"watch:ts": "tsnd --respawn ./src/index.ts",
"watch": "yarn watch:client & yarn watch:ts",
"build:client": "NODE_ENV=production webpack",
"watch:test": "jest --watch",
"test": "jest",
"coverage": "jest --coverage"
},
"engines": {
"node": ">=13.10.0",
"yarn": ">=1.22.4"
},
"browserslist": [
"> 2%",
"not IE <=11"
],
"prettier": {
"useTabs": true,
"printWidth": 90,
"endOfLine": "auto",
"tabWidth": 2
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@types/axios": "^0.14.0",
"@types/form-data": "^2.5.0",
"@types/highlight.js": "^9.12.4",
"@types/jest": "^25.2.3",
"@types/koa": "^2.11.3",
"@types/koa-router": "^7.4.1",
"@types/koa-static": "^4.0.1",
"@types/node": "^14.0.5",
"babel-loader": "^8.1.0",
"browser-sync": "^2.26.7",
"clean-webpack-plugin": "^3.0.0",
"compression": "^1.7.4",
"compression-webpack-plugin": "^4.0.0",
"css-loader": "^3.5.3",
"cssnano": "^4.1.10",
"highlight.js": "^10.4.1",
"jest": "^25.5.4",
"mini-css-extract-plugin": "^0.9.0",
"postcss": "^7.0.30",
"postcss-cli": "^7.1.1",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"precompress": "^6.2.5",
"sqlite3": "^4.1.1",
"terser-webpack-plugin": "^3.0.1",
"ts-jest": "^25.5.1",
"ts-loader": "^7.0.4",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}