-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
65 lines (65 loc) · 3 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "multi",
"version": "1.1.0",
"description": "",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/univlorraine/esup-multi.git"
},
"author": "Université de Lorraine",
"license": "CeCILL-2.1",
"bugs": {
"url": "https://github.com/univlorraine/esup-multi/issues"
},
"homepage": "https://github.com/univlorraine/esup-multi#readme",
"scripts": {
"ci": "npm ci && npm run back:main -- ci && concurrently \"npm run back:*(!main) -- ci\" && npm run mocks -- ci && npm run front -- ci",
"build:back": "npm run back:main -- ci && concurrently \"npm run back:*(!main) -- ci\" && concurrently \"npm run back:* -- run build\"",
"build:front": "npm run front -- ci && npm run front -- run module:build-all",
"build:mocks": "npm run mocks -- ci",
"start:back": "concurrently \"npm run back:* -- run start\"",
"start:back:dev": "concurrently \"npm run back:* -- run start:dev\"",
"start:front": "cd dev/user-frontend-ionic && ionic serve",
"start:mocks": "npm run mocks -- start",
"front": "cd dev/user-frontend-ionic && npm",
"mocks": "cd dev/user-backend-mocks && npm",
"back:main": "cd dev/user-backend-nest/main && npm",
"back:auth": "cd dev/user-backend-nest/microservices/auth && npm",
"back:cards": "cd dev/user-backend-nest/microservices/cards && npm",
"back:chatbot": "cd dev/user-backend-nest/microservices/chatbot && npm",
"back:clocking": "cd dev/user-backend-nest/microservices/clocking && npm",
"back:contact-us": "cd dev/user-backend-nest/microservices/contact-us && npm",
"back:contacts": "cd dev/user-backend-nest/microservices/contacts && npm",
"back:features": "cd dev/user-backend-nest/microservices/features && npm",
"back:important-news": "cd dev/user-backend-nest/microservices/important-news && npm",
"back:mail-calendar": "cd dev/user-backend-nest/microservices/mail-calendar && npm",
"back:map": "cd dev/user-backend-nest/microservices/map && npm",
"back:notifications": "cd dev/user-backend-nest/microservices/notifications && npm",
"back:restaurants": "cd dev/user-backend-nest/microservices/restaurants && npm",
"back:rss": "cd dev/user-backend-nest/microservices/rss && npm",
"back:schedule": "cd dev/user-backend-nest/microservices/schedule && npm",
"back:social-network": "cd dev/user-backend-nest/microservices/social-network && npm",
"back:static-pages": "cd dev/user-backend-nest/microservices/static-pages && npm",
"back:statistics": "cd dev/user-backend-nest/microservices/statistics && npm"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"commitizen": "^4.3.0",
"concurrently": "^8.2.2",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.0.10",
"license-checker-rseidelsohn": "^4.3.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}