-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.46 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
{
"name": "curiexplore-paysage",
"version": "0.0.6",
"description": "Récupération des données pays de Paysage pour les rendre accessibles depuis une API",
"main": "index.js",
"scripts": {
"start": "npm run build && node ./build/index.js",
"start:dev": "nodemon --exec babel-node src/index.js",
"build": "npm run clean && npm run build-babel",
"clean": "rm -rf build && mkdir build",
"start:docker:dev": "docker compose -f docker-compose-dev.yml up --build",
"start:docker:prod": "docker compose up -d",
"build-babel": "babel -d ./build src -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dataesr/curieXplore-paysage.git"
},
"author": "Equipe DOAD",
"license": "ISC",
"bugs": {
"url": "https://github.com/dataesr/curieXplore-paysage/issues"
},
"homepage": "https://github.com/dataesr/curieXplore-paysage#readme",
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.13",
"@babel/eslint-parser": "^7.13.10",
"@babel/node": "^7.13.13",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/runtime": "^7.13.10",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.4"
},
"dependencies": {
"axios": "^0.21.1",
"express": "^4.17.1",
"mongodb": "^3.6.6",
"node-cron": "^3.0.0",
"nodemon": "^2.0.7"
}
}