-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.26 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
{
"name": "6ar",
"version": "1.0.0",
"description": "Border traffic monitoring system",
"author": "GoodGrind Kft.",
"license": "GPL-3.0-or-later",
"homepage": "http://6ar.hu",
"bugs": {
"url": "https://github.com/snorbi07/6ar/issues"
},
"main": "index.js",
"typeings": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"test": "jest",
"watch": "tsc -w",
"lint:typescript": "eslint ./src/**/*.ts",
"lint": "yarn lint:typescript",
"db:migrate": "knex --knexfile knexfile.ts migrate:latest",
"db:seed": "knex --knexfile knexfile.ts seed:run"
},
"dependencies": {
"axios": "0.19.0",
"cheerio": "1.0.0-rc.2",
"knex": "0.20.1",
"lodash": "4.17.15",
"luxon": "1.21.1",
"pg": "7.12.1",
"ts-node-dev": "^1.0.0-pre.44"
},
"devDependencies": {
"@types/cheerio": "0.22.14",
"@types/jest": "24.0.23",
"@types/lodash": "4.14.147",
"@types/luxon": "1.15.2",
"@typescript-eslint/eslint-plugin": "2.7.0",
"@typescript-eslint/parser": "2.7.0",
"eslint": "6.6.0",
"eslint-plugin-jest": "23.0.3",
"jest": "24.9.0",
"ts-jest": "24.1.0",
"ts-node": "8.5.0",
"typescript": "3.7.2"
}
}