generated from VilledeMontreal/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.29 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
100
101
{
"name": "le-taxi-api-node.js",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"author": "Ville de Montreal",
"license": "ISC",
"scripts": {
"start-dev": "npm run tsc && env NODE_ENV=development node -r source-map-support/register src/index.js",
"start-localhost": "npm run tsc && env NODE_ENV=localhost node -r source-map-support/register src/index.js",
"test-dev": "npm run tsc && env NODE_ENV=development NODE_APP_INSTANCE=tests mocha \"src/features/**/*.test.js\" \"src/tests/**/*.test.js\" --require source-map-support/register --timeout 100000 --exit",
"test-localhost": "npm run tsc && env NODE_ENV=localhost NODE_APP_INSTANCE=tests mocha \"src/features/**/*.test.js\" \"src/tests/**/*.test.js\" --require source-map-support/register --timeout 100000 --exit",
"tsc": "npm run clean && tsc --build tsconfig.json",
"watch": "npm run clean && tsc --watch --pretty",
"clean": "rimraf src/**/*.js src/**/*.js.map",
"lint": "npm run prettier && npm run tslint",
"lint-fix": "npm run prettier-fix && npm run tslint-fix",
"prettier": "villemontreal-lint . check node prettier",
"prettier-fix": "villemontreal-lint . fix node prettier",
"tslint": "tslint -c tslint.json --project .",
"tslint-fix": "tslint -c tslint.json --fix --project . ",
"sonar": "sh ./sonar.sh"
},
"dependencies": {
"@turf/boolean-contains": "6.5.0",
"@turf/helpers": "6.5.0",
"@turf/length": "6.5.0",
"@villedemontreal/scripting": "2.1.8",
"body-parser": "1.20.2",
"class-transformer": "0.5.1",
"class-validator": "0.13.2",
"compression": "1.7.4",
"config": "3.3.11",
"cookies": "0.9.1",
"cors": "2.8.5",
"es6-shim": "0.35.8",
"express": "4.19.2",
"express-async-errors": "3.1.1",
"express-prom-bundle": "7.0.0",
"fs": "0.0.2",
"geojson": "0.5.0",
"http-status-codes": "2.3.0",
"i": "0.3.7",
"influxdb-nodejs": "3.1.0",
"json2csv": "5.0.7",
"JSONStream": "1.3.5",
"jszip": "3.10.1",
"lodash": "4.17.21",
"lru-cache": "10.2.2",
"mockit-express": "0.5.0",
"moment": "2.30.1",
"mongodb": "6.6.2",
"njwt": "2.0.0",
"nock": "13.5.4",
"passhelp": "1.1.1",
"pg": "8.11.5",
"pg-query-stream": "4.5.5",
"pino": "9.1.0",
"prom-client": "15.1.2",
"promise": "8.3.0",
"reflect-metadata": "0.2.2",
"request": "2.88.2",
"serialize-error": "8.1.0",
"shortid": "2.2.16",
"superagent": "9.0.2",
"uuid": "9.0.1",
"uuid4": "2.0.3",
"xss": "1.0.15",
"zlib": "1.0.5"
},
"devDependencies": {
"@types/bunyan": "1.8.11",
"@types/chai": "4.3.16",
"@types/config": "3.3.4",
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/geojson": "7946.0.14",
"@types/lodash": "4.17.4",
"@types/lru-cache": "7.10.9",
"@types/mocha": "10.0.6",
"@types/node": "20.12.12",
"@types/pg": "8.11.6",
"@types/request": "2.48.12",
"@types/superagent": "8.1.7",
"@villedemontreal/lint-config": "1.7.7",
"chai": "4.4.1",
"chai-http": "4.4.0",
"mocha": "10.4.0",
"rimraf": "5.0.7",
"sonarqube-scanner": "3.5.0",
"source-map-support": "0.5.21",
"typescript": "5.4.5"
},
"peerDependencies": {
"js-yaml": "^3",
"tslint": "*"
},
"engines": {
"node": "~20.13.0"
}
}