-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.39 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.39 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
36
37
38
39
40
41
{
"name": "motionhub",
"version": "1.0.0",
"description": "An API where you can store the details of your videos, like title, description and duration.",
"main": "src/server.js",
"type": "module",
"scripts": {
"start": "node ./src/server.js",
"dev": "node --watch --no-warnings ./src/server.js",
"cy:open": "cypress open",
"cy:open:tablet": "cypress open --config viewportWidth=767,viewportHeight=480",
"test": "cypress run",
"test:tablet": "cypress run --config viewportWidth=767,viewportHeight=480",
"lint": "eslint cypress/**/*.js && eslint cypress.config.js && eslint src/**.js",
"lint:fix": "eslint cypress/**/*.js --fix && eslint cypress.config.js --fix && eslint src/**.js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rodrigomolter/MotionHub-API.git"
},
"keywords": [
"Cypress",
"API Testing"
],
"author": "Rodrigo Molter <rodrigo.molter@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rodrigomolter/MotionHub-API/issues"
},
"homepage": "https://github.com/rodrigomolter/MotionHub-API#readme",
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@fastify/swagger": "^8.14.0",
"@fastify/swagger-ui": "^3.0.0",
"cypress": "^13.7.1",
"cypress-plugin-api": "^2.11.1",
"eslint": "^8.57.0",
"eslint-plugin-cypress": "^2.15.1",
"fastify": "^4.26.2"
}
}