-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.33 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
{
"name": "website-screenshot-capturer",
"version": "1.0.0",
"main": "dist/index.js",
"repository": "https://github.com/AdamMomen/website-screenshot-capturer.git",
"author": "Adam <[email protected]>",
"license": "MIT",
"scripts": {
"watch": "tsc -w",
"dev": "nodemon dist/src/index.js",
"test": "jest --forceExit --detectOpenHandles",
"build": "tsc",
"start": "node dist/src/index.js --single-cpu",
"start:cluster": "node dist/src/index.js --multi-cpu"
},
"devDependencies": {
"@types/cors": "^2.8.9",
"@types/express": "^4.17.9",
"@types/jest": "^26.0.19",
"@types/k6": "^0.28.3",
"@types/pg": "^7.14.7",
"@types/puppeteer": "^5.4.2",
"@types/socket.io": "^2.1.12",
"@types/supertest": "^2.0.10",
"@types/validator": "^13.1.1",
"ioredis-mock": "^5.2.0",
"jest": "^26.6.3",
"k6": "^0.0.0",
"nodemon": "^2.0.6",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"bullmq": "^1.12.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"pg": "^8.5.1",
"puppeteer": "^5.5.0",
"reflect-metadata": "^0.1.13",
"socket.io": "^3.0.4",
"socket.io-client": "^3.0.4",
"typeorm": "^0.2.29",
"validator": "^13.5.2",
"winston": "^3.3.3"
}
}