-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.92 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
{
"name": "air-quality-service",
"version": "0.0.0",
"scripts": {
"build": "npx ts-node build.ts",
"lint": "npx eslint --ext .ts src/",
"lint:tests": "npx eslint --ext .ts spec/",
"api:start": "node -r module-alias/register ./dist/",
"api:dev": "nodemon ./src",
"cron:start": "node -r module-alias/register ./dist/cron.js",
"cron:dev": "nodemon ./src/cron.ts",
"test": "nodemon --config ./spec/nodemon.json",
"test:no-reloading": "npx ts-node --files -r tsconfig-paths/register ./spec"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"exec": "./node_modules/.bin/ts-node --files -r tsconfig-paths/register"
},
"_moduleAliases": {
"@src": "dist"
},
"engines": {
"node": ">=8.10.0"
},
"dependencies": {
"axios": "^1.7.2",
"axios-retry": "^4.4.1",
"cron": "^3.1.7",
"express": "^4.19.2",
"express-async-errors": "^3.1.1",
"helmet": "^7.1.0",
"inserturlparams": "^1.1.2",
"jet-logger": "^1.3.1",
"jet-paths": "^1.0.6",
"jet-validator": "^1.1.1",
"jsonfile": "^6.1.0",
"module-alias": "^2.2.3",
"moment": "^2.30.1",
"mongoose": "^8.4.4",
"morgan": "^1.10.0",
"ts-command-line-args": "^2.5.1"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/express": "^4.17.21",
"@types/find": "^0.2.4",
"@types/fs-extra": "^11.0.4",
"@types/jasmine": "^5.1.4",
"@types/jsonfile": "^6.1.4",
"@types/morgan": "^1.9.9",
"@types/node": "^20.14.9",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.57.0",
"eslint-plugin-node": "^11.1.0",
"find": "^0.3.0",
"fs-extra": "^11.2.0",
"jasmine": "^5.1.0",
"nock": "^13.5.4",
"nodemon": "^3.1.4",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.3"
}
}