This repository has been archived by the owner on Sep 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
99 lines (99 loc) · 2.79 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "geo-api",
"version": "0.4.0",
"description": "Retourne une liste de communes et forêts françaises en fonction d'un périmètre géographique",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/MTES-MCT/geo-api"
},
"main": "index.js",
"dependencies": {
"@turf/area": "^6.3.0",
"@turf/intersect": "^6.3.0",
"@types/express": "^4.17.11",
"@types/express-slow-down": "^1.3.0",
"@types/jest": "26.0.20",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.32",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-basic-auth": "^1.2.0",
"express-slow-down": "^1.4.0",
"geojson-rbush": "^3.1.2",
"morgan": "^1.10.0",
"typescript": "^4.2.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.9",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1"
},
"scripts": {
"dev": "nodemon",
"start": "node ./dist/index.js",
"build": "rm -rf dist && tsc",
"commit": "git-cz",
"test": "npm run build && jest"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"standard",
"prettier",
"prettier/@typescript-eslint",
"prettier/standard"
],
"env": {
"node": true,
"jest/globals": true
},
"plugins": [
"prettier",
"jest",
"@typescript-eslint"
],
"rules": {
"prettier/prettier": "error",
"@typescript-eslint/camelcase": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/no-empty-interface": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/no-use-before-define": 0,
"@typescript-eslint/no-var-requires": 0,
"@typescript-eslint/interface-name-prefix": 0,
"newline-before-return": 1
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}