-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
{
"name": "annuaire-api",
"version": "3.0.0",
"description": "Create basic GeoJSON API - l'annuaire de l’administration",
"author": "Thomas Guillet <guillet.thomas@gmail.com>",
"license": "MIT",
"repository": "git@github.com:betagouv/annuaire-api.git",
"engines": {
"node": ">= 16"
},
"dependencies": {
"@etalab/decoupage-administratif": "^3.0.0",
"bluebird": "^3.5.0",
"cors": "^2.8.5",
"decompress": "^4.2.0",
"express": "^4.16.2",
"got": "^11.8.3",
"js-yaml": "^3.8.4",
"lodash": "^4.17.15",
"morgan": "^1.9.1"
},
"devDependencies": {
"eslint": "^6.0",
"eslint-config-standard": "^14.0",
"eslint-plugin-import": "^2.18",
"eslint-plugin-node": "^10.0",
"eslint-plugin-promise": "^4.0",
"eslint-plugin-standard": "^4.0",
"mocha": "^4.0.1"
},
"scripts": {
"build": "node --max-old-space-size=4096 build",
"lint": "eslint \"*.js\" \"**/*.js\"",
"test": "npm run lint && npm run mocha",
"mocha": "mocha",
"serve": "node --max-old-space-size=2048 server",
"start": "node --max-old-space-size=2048 server"
}
}