This repository has been archived by the owner on Mar 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.28 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
{
"name": "webev-server",
"version": "0.9.5",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"start": "node dist/main.js",
"build": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
"dev": "env-cmd -f ./config/.env nodemon -x ts-node -r tsconfig-paths/register src/main.ts",
"deploy": "yarn build && gcloud run deploy --source .",
"lint": "eslint src/**/**.ts",
"test": "jest"
},
"dependencies": {
"article-parser": "7.0.3",
"cheerio": "1.0.0-rc.12",
"connect-mongo": "4.6.0",
"cors": "2.8.5",
"env-cmd": "10.1.0",
"express": "4.18.1",
"express-mongo-sanitize": "2.2.0",
"express-rate-limit": "6.5.1",
"express-session": "1.17.3",
"express-validator": "6.14.2",
"lodash": "4.17.21",
"mongoose": "6.5.2",
"mongoose-paginate-v2": "1.7.0",
"passport": "0.6.0",
"passport-google-oauth": "2.0.0",
"pino": "8.4.2",
"pino-pretty": "8.1.0",
"superagent": "8.0.0",
"swagger-jsdoc": "6.2.5",
"swagger-ui-express": "4.5.0"
},
"devDependencies": {
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/express-session": "1.17.5",
"@types/jest": "29.5.0",
"@types/lodash": "4.14.184",
"@types/node": "18.15.3",
"@types/passport-google-oauth": "1.0.42",
"@types/superagent": "4.1.15",
"@types/swagger-jsdoc": "6.0.1",
"@types/swagger-ui-express": "4.1.3",
"@typescript-eslint/eslint-plugin": "5.33.1",
"@typescript-eslint/parser": "5.33.1",
"eslint": "8.22.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "28.1.3",
"nodemon": "2.0.19",
"prettier": "2.7.1",
"ts-jest": "28.0.8",
"ts-loader": "9.3.1",
"ts-node": "10.9.1",
"tsc-alias": "1.7.0",
"tsconfig-paths": "4.1.0",
"typescript": "4.7.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"moduleNameMapper": {
"~(.*)$": "<rootDir>/$1"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"volta": {
"node": "16.17.0"
}
}