-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.35 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
{
"name": "zalgo",
"version": "1.0.0",
"description": "Zalgo Captcha RESTful service",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "tsc && node ./dist/server.js",
"lint": "eslint \"*/**/*.ts\" --quiet --fix",
"format": "prettier --config .prettierrc \"./src/**/*.ts\" --write",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"author": "Antonino Bertulla <abertulla@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/node": "^20.10.5",
"@types/pino-http": "^5.8.2",
"@types/polka": "^0.5.7",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.1.0",
"jest": "^28.1.3",
"jest-extended": "^4.0.2",
"pino-pretty": "^10.3.0",
"prettier": "^3.1.1",
"supertest": "^6.3.3",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@polka/send-type": "^0.5.2",
"body-parser": "^1.20.2",
"nanoid": "^3.3.2",
"node-cache": "^5.1.2",
"pino-http": "^8.6.0",
"polka": "^0.5.2",
"zalgo-captcha": "file:./pkg/zalgo-captcha"
}
}