This repository has been archived by the owner on Nov 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.81 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": "mobiville",
"version": "0.0.1",
"scripts": {
"build": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml build",
"start": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml up -d",
"start:test": "docker-compose -p test-e2e -f docker-compose.test.yml run --rm e2e; exitcode=$?; docker-compose -p test-e2e -f docker-compose.test.yml down; exit ${exitcode}",
"stop": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml stop",
"build:recette": "docker-compose -f docker-compose.yml -f docker-compose.recette.yml build && rm -rf images-docker && mkdir images-docker && docker save -o ./images-docker/nginx_recette nginx_recette:latest && docker save -o ./images-docker/api_recette api_recette:latest",
"log:api": "docker logs --tail=200 -f mobiville_api_1",
"log:front": "docker logs --tail=200 -f mobiville_front_1",
"test": "cd front && yarn lint",
"prepare": "husky install",
"postinstall": "husky install",
"pre-commit-lint": "yarn lint-staged"
},
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "ssh://[email protected]:23/mobiville/mobiville.git"
},
"author": "François-Xavier Montigny <[email protected]>",
"bugs": {
"url": "https://git.beta.pole-emploi.fr/mobiville/mobiville/-/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{front,api}/src/**/*.{js,jsx,ts,tsx,css,scss,md}": [
"eslint --fix --max-warnings=0",
"prettier --write"
]
},
"homepage": "https://git.beta.pole-emploi.fr/mobiville/mobiville/-/blob/master/README.md",
"dependencies": {
"husky": "8.0.3",
"lint-staged": "13.1.0",
"prettier": "2.8.3"
},
"devDependencies": {
"babel-eslint": "10.1.0",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-config-react-app": "7.0.1"
}
}