-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.13 KB
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
{
"name": "ropa-web-service-v2",
"version": "1.0.0",
"description": "This repository contains the source code for the CN334 ROPA project, a collaboration with Netbay. The project is split into a **FastAPI** backend and a **Next.js** frontend.",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Thyme2be/RoPa-Web-Service-V2.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Thyme2be/RoPa-Web-Service-V2/issues"
},
"homepage": "https://github.com/Thyme2be/RoPa-Web-Service-V2#readme",
"workspaces": [
"client"
],
"scripts": {
"install:all": "npm install && npm install --workspace=client",
"dev": "npm run dev --workspace=client",
"test": "npx playwright test",
"test:robot": "robot tests/robot/api_user_crud.robot",
"test:robot:spec": "docker compose -f tests/robot/docker-compose.test.yml up --build --abort-on-container-exit --exit-code-from robot-runner"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/node": "^25.6.0"
}
}