-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.4 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
{
"$schema": "https://json.schemastore.org/package",
"name": "web-crawler",
"version": "1.0.0",
"description": "This is a repository for a team semestral work for the subject *Advanced Technologies for Web Applications* (NSWI153).",
"scripts": {
"build": "npx turbo run build",
"dev": "npx turbo run dev",
"test": "npx turbo run test",
"clean": "npx turbo run clean",
"formatFix": "npx prettier --write src/",
"lintFix": "npx turbo run lintFix",
"lintCheck": "npx turbo run lintCheck",
"formatCheck": "npx prettier --check src/",
"dockerDev": "docker compose -f docker-compose.yaml -f docker-compose.dev-override.yaml up"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PatrikTrefil/web-crawler.git"
},
"keywords": [
"crawler"
],
"contributors": [
{
"name": "Patrik Trefil",
"email": "patrik.trefil@gmail.com",
"url": "https://patriktrefil.com"
},
{
"name": "Zuzana Bohatová"
},
{
"name": "Milan Lamplot"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/PatrikTrefil/web-crawler/issues"
},
"homepage": "https://github.com/PatrikTrefil/web-crawler#readme",
"devDependencies": {
"prettier": "^2.6.0",
"turbo": "^1.10.15"
},
"workspaces": [
"src/packages/*",
"src/apps/*"
],
"packageManager": "npm@8.5.2",
"engines": {
"npm": ">=7.0.0"
}
}