-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.43 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.43 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
42
43
44
45
46
47
48
49
50
51
{
"name": "fiap-pt-fsdt",
"version": "1.0.0",
"description": "FIAP",
"type": "module",
"main": "index.js",
"scripts": {
"install:backend": "cd tech_challenge1/backend && npm install",
"build": "cd tech_challenge1/backend && npm run build",
"start": "node index.js",
"test": "cd tech_challenge1/backend && npm test",
"test:ci": "cd tech_challenge1/backend && npm run test:ci",
"test:coverage": "cd tech_challenge1/backend && npm run test:coverage",
"lint": "cd tech_challenge1/backend && npm run lint",
"prepare": "is-ci || husky",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/MauGx3/fiap-pt-fsdt.git"
},
"author": "Mauricio Gioachini",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.56.0",
"husky": "^9.1.7",
"is-ci": "^3.0.1",
"lint-staged": "^16.1.2",
"playwright": "^1.56.0"
},
"lint-staged": {
"tech_challenge1/backend/**/*.js": [
"cd tech_challenge1/backend && npm run lint -- --fix",
"cd tech_challenge1/backend && npm test -- --passWithNoTests"
],
"prettier": "^3.3.3"
},
"workspaces": [
"tech_challenge1/backend"
],
"dependencies": {
"vite": "^7.1.9"
}
}