-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.53 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
{
"name": "house-scraper-rotterdam",
"version": "1.0.0",
"description": "App to scrap places to live in Rotterdam",
"author": "Diego & Mehmet",
"main": "dist/server.js",
"devDependencies": {
"@types/cheerio": "^0.22.18",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.4",
"@types/express-rate-limit": "^5.0.0",
"@types/helmet": "^0.0.45",
"@types/jest": "^25.1.5",
"@types/mongodb": "^3.5.4",
"@types/node": "^13.11.0",
"@types/node-cron": "^2.0.3",
"@types/node-fetch": "^2.5.7",
"@types/nodemailer": "^6.4.0",
"@types/request-promise": "^4.1.46",
"@types/website-scraper": "^1.2.5",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"ejs": "^3.1.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-security": "^1.4.0",
"prettier": "^2.0.4",
"ts-node": "^8.9.1",
"tz-offset": "^0.0.2",
"typescript": "^3.8.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^5.0.0-alpha.8",
"express-rate-limit": "^5.1.1",
"helmet": "^3.22.1",
"html-to-text": "^6.0.0",
"mongodb": "^3.5.8",
"mongodb-client-encryption": "^1.2.1",
"node-cron": "^2.0.3",
"node-fetch": "^2.6.1",
"nodemailer": "^6.4.16",
"npm-watch": "^0.7.0",
"pm2": "^4.5.5",
"request": "^2.88.2",
"request-promise": "^4.2.5",
"tsc-watch": "^4.2.7",
"ts-loader": "^8.0.4",
"website-scraper": "^4.2.3",
"snyk": "^1.474.0"
},
"scripts": {
"format": "npx prettier -c --write \"./src/**/*.[j|t]s\"",
"lint": "npx eslint \"./src/**/*.[j|t]s\"",
"lint:fix": "npm run lint -- --fix",
"start": "node ./dist/server.js",
"prestart:prod": "npx tsc",
"start:prod": "npx pm2 start pm2.yaml",
"stop": "npx pm2 kill",
"predev": "npm run format && npm run lint",
"dev": "ts-node --project tsconfig.json src/server.ts",
"test": "ts-node --project tsconfig.json src/tests/index.spec.ts",
"logs": "npx pm2 logs --lines=50",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect",
"build": "rm -rf dist && webpack --mode development",
"build:prod": "rm -rf dist && webpack --mode production",
"postinstall": "npm run build"
},
"snyk": true
}