-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.31 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
{
"name": "loyer-paris-be",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "22.x",
"npm": "10.x"
},
"scripts": {
"start": "npm run dev",
"watch": "nodemon --exec \"npm run build && npm run start\" --watch src --ext ts",
"build": "rimraf ./build && tsc",
"test": "jest --forceExit --detectOpenHandles",
"test:watch": "jest --forceExit --detectOpenHandles --no-cache --watchAll",
"dev": "ts-node-dev --transpile-only ./src/index.ts",
"prod": "node ./build/src/index.js",
"debug": "tsc && node --inspect ./build/src/index.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"author": "Aymeric & Thomas",
"license": "ISC",
"dependencies": {
"@mapbox/geojson-rewind": "^0.5.2",
"@sentry/node": "^7.112.2",
"@sentry/profiling-node": "^7.112.2",
"@slack/web-api": "^7.0.0",
"@types/cli-color": "^2.0.2",
"@types/cors": "^2.8.13",
"@types/express": "^5.0.0",
"@types/geojson": "^7946.0.10",
"@types/node-cron": "^3.0.8",
"@types/xml2json": "^0.11.4",
"async": "^3.2.4",
"axios": "^1.4.0",
"cli-color": "^2.0.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"eslint-plugin-prettier": "^5.0.0",
"event-stream": "^4.0.1",
"express": "^5.0.1",
"fuse.js": "^7.0.0",
"jsdom": "^24.1.0",
"module-alias": "^2.2.3",
"mongoose": "^8.1.0",
"node-cache": "^5.1.2",
"node-cron": "^3.0.2",
"random-position-in-polygon": "^1.0.6",
"twitter-api-v2": "^1.15.1",
"typescript-memoize": "^1.1.1"
},
"_moduleAliases": {
"@api": "build/src/api",
"@cronjobs": "build/src/cronjobs",
"@db": "build/src/db",
"@interfaces": "build/src/interfaces",
"@messenger": "build/src/messenger",
"@services": "build/src/services"
},
"devDependencies": {
"@shelf/jest-mongodb": "^4.1.7",
"@types/express-serve-static-core": "^4.17.35",
"@types/jest": "^29.5.12",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
}
}