-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.99 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
{
"name": "turvis",
"version": "1.0.0",
"description": "Validate incoming requests to detect attempts of attacks",
"main": "src/main.ts",
"scripts": {
"start": "npm run build && node dist/main",
"start:dev": "tsc -p tsconfig.build.json -w & nodemon -q -w dist dist/main",
"start:prod": "node dist/main",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json && npm run copy-config",
"copy-config": "copyfiles 'config/**/*.yml' dist",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json --passWithNoTests",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format:check": "prettier --check \"{src,test}/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint:check": "eslint \"{src,apps,libs,test}/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/buerokratt/turvis.git"
},
"author": "Devtailor",
"license": "MIT",
"bugs": {
"url": "https://github.com/buerokratt/turvis/issues"
},
"homepage": "https://github.com/buerokratt/turvis#readme",
"dependencies": {
"chokidar": "^3.5.3",
"class-validator": "^0.14.0",
"fastify": "^4.17.0",
"js-yaml": "^4.1.0",
"p-limit": "^3.1.0",
"pino": "^8.14.1",
"pino-pretty": "^10.0.1"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/jest": "^29.5.2",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.1.0",
"@types/p-limit": "^2.2.0",
"@types/pino": "^7.0.5",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"copyfiles": "^2.4.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-export-all": "^1.4.1",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
}
}