-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.41 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
{
"name": "rescue-service-api",
"version": "0.0.1",
"description": "Rescue service API",
"main": "src/app.ts",
"scripts": {
"start": "ts-node-dev --respawn --transpile-only --require dotenv/config src/index.ts",
"test": "NODE_ENV=test jest --silent --testPathIgnorePatterns integration",
"integration": "env $(cat .env) NODE_ENV=test jest --silent --testPathPattern integration",
"migrate": "env $(cat .env) knex migrate:latest",
"rollback": "env $(cat .env) knex migrate:rollback"
},
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-winston": "^4.1.0",
"iconv-lite": "^0.6.2",
"knex": "^0.95.2",
"morgan": "^1.10.0",
"node-cron": "^2.0.3",
"object-hash": "^2.1.1",
"pg": "^8.5.1",
"rss-parser": "^3.12.0",
"winston": "^3.3.3",
"ws": "^7.4.4"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/morgan": "^1.9.2",
"@types/node-cron": "^2.0.3",
"@types/object-hash": "^1.3.4",
"@types/supertest": "^2.0.10",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.20.0",
"jest": "^26.6.3",
"supertest": "^6.1.3",
"ts-jest": "^26.5.2",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.2"
}
}