-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.61 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
{
"name": "medical-agenda",
"version": "1.0.0",
"description": "# CONVENTIONS / How to contribute ## Branch naming",
"main": "index.js",
"lint-staged": {
"core_api/**/*.{js,jsx,ts,tsx}": [
"npm run format --prefix core_api",
"npm run lint --prefix core_api"
],
"client/**/*.{js,jsx,ts,tsx}": [
"npm run format --prefix client",
"npm run lint --prefix client"
],
"playwright/**/*{js,ts}": [
"npm run format --prefix playwright",
"npm run lint --prefix playwright"
],
"mailer/**/*.{js,jsx,ts,tsx}": [
"npm run format --prefix mailer",
"npm run lint --prefix mailer"
]
},
"scripts": {
"test": "npm run test --prefix client && npm run test --prefix core_api",
"testclient": "npm run test --prefix client",
"testcoreapi": "npm run test --prefix core_api",
"prepare": "husky",
"lint": "lint-staged",
"lint-full": "npm run lint-full --prefix client && npm run lint-full --prefix core_api",
"dev-restart": "make devdown && make prune && make rebuild && make dev",
"install": "npm install --prefix client && npm install --prefix core_api"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WildCodeSchool-CDA-FT-2024-09/JS-CDA-Projet-2-Team-C.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/WildCodeSchool-CDA-FT-2024-09/JS-CDA-Projet-2-Team-C/issues"
},
"homepage": "https://github.com/WildCodeSchool-CDA-FT-2024-09/JS-CDA-Projet-2-Team-C#readme",
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"typescript": "^5.6.3"
}
}