-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.72 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
{
"name": "Preserve",
"version": "1.0.1",
"description": "",
"scripts": {
"dev": "nodemon --watch src src/server.ts",
"worker": "nodemon --watch src src/worker.ts",
"build": "rimraf dist/ && tsc",
"start": "npm run build && node dist/src/server.js",
"test": "jest ./specs --testPathIgnorePatterns=Integration",
"test-integration": "jest ./specs/*Integration*",
"lint": "eslint specs/**/**.ts src/**/**.ts",
"check-types": "tsc --noEmit --pretty",
"blank-state": "./scripts/blank-state.sh"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sentry/node": "7.26.0",
"@sentry/tracing": "7.26.0",
"body-parser": "^1.20.1",
"browserless": "9.8.0",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"express": "^4.18.1",
"express-prom-bundle": "^6.5.0",
"lodash": "^4.17.21",
"mongodb": "^4.12.1",
"prom-client": "^14.1.0",
"puppeteer": "^19.4.0",
"puppeteer-full-page-screenshot": "^1.2.2",
"winston": "^3.8.2",
"winston-graylog2": "^2.1.2",
"youtube-dl-exec": "^2.1.10"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.13",
"@types/jest": "27.5.1",
"@types/node": "^18.11.9",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "28.1.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"supertest": "^6.3.3",
"ts-jest": "28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"wait-for-expect": "^3.0.2"
}
}