-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.52 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
{
"name": "@anopszetex/worker-thread",
"version": "1.0.0",
"author": "Andre Luiz <andre.1357.luis@gmail.com>",
"description": "how editing images using multi thread with nodejs",
"main": "index.js",
"type": "module",
"engines": {
"node": "^16"
},
"scripts": {
"start": "PORT=3712 NODE_ENV=development node src/index.js",
"dev": "PORT=3712 NODE_ENV=development npx nodemon --ext js,json,mjs src/index.js",
"autocannon": "autocannon -c 100 -d 30 -p 10 -l http://localhost:3712/joinImages?image=https://wallpapercave.com/wp/wp2482763.png&background=https://wallpapercave.com/wp/wp2482763.png",
"flame-0x": "PORT=3712 npx 0x -- node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anopszetex/worker-thread.git"
},
"keywords": [],
"license": "ISC",
"bugs": {
"url": "https://github.com/anopszetex/worker-thread/issues"
},
"homepage": "https://github.com/anopszetex/worker-thread#readme",
"dependencies": {
"axios": "^0.24.0",
"pino": "^8.3.0",
"piscina": "^3.2.0",
"sharp": "^0.29.3"
},
"devDependencies": {
"0x": "^5.4.0",
"autocannon": "^7.9.0",
"eslint": "^8.20.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"ntl": "^5.1.0",
"pino-pretty": "^8.1.0",
"prettier": "^2.7.1",
"prettier-plugin-sort-imports": "^1.7.0"
}
}