This repository has been archived by the owner on Feb 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.02 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
{
"name": "mna-catalogue",
"version": "2.0.1",
"description": "[MNA] Catalogue",
"repository": "https://github.com/mission-apprentissage/catalogue.git",
"private": false,
"author": "MNA",
"license": "MIT",
"scripts": {
"docker:start": "docker-compose up -d --build --force-recreate",
"docker:stop": "docker-compose down",
"docker:destroy": "docker-compose rm --force --stop -v ; rm -rf .data/; docker volume rm mna_data_elasticsearch; docker volume rm mna_data_mongodb",
"es:backup": "bash tools/elasticsearch/es-backup.sh",
"es:dump": "bash tools/elasticsearch/es-dump.sh",
"mongodb:backup": "bash tools/mongodb/mongodb-backup.sh",
"mongodb:dump": "bash tools/mongodb/mongodb-dump.sh",
"start": "yarn run docker:start && run-p -ncr start:api start:front",
"start:api": "cd api && yarn start --stage local",
"start:front": "cd front && yarn start"
},
"engines": {
"node": ">=12.11.0",
"npm": "6.x"
},
"prettier": {
"printWidth": 120,
"bracketSpacing": true,
"trailingComma": "es5"
},
"devDependencies": {
"elasticdump": "6.23.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"prettier": "^1.19.1"
},
"dependencies": {
"@elastic/elasticsearch": "7.6.1",
"aws-elasticsearch-connector": "8.2.0",
"dotenv": "^8.2.0",
"axios": "^0.19.2",
"elasticsearch-scroll-stream": "1.2.1",
"env-var": "6.0.4",
"fs-extra": "^8.1.0",
"iconv-lite": "0.5.1",
"lodash": "4.17.15",
"mocha": "7.1.1",
"moment": "2.24.0",
"mongoose": "^5.9.7",
"mongoose-paginate": "^5.0.3",
"multipipe": "4.0.0",
"npm-run-all": "^4.1.5",
"uuid": "7.0.3"
}
}