-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.01 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
{
"name": "jore-postgres-import",
"version": "0.0.1",
"description": "Data importer for jore-graphql",
"type": "module",
"scripts": {
"start": "node -r dotenv/config src/index.js",
"lint": "eslint src --fix",
"prettier": "prettier */**.{js,json} --write",
"ftpsource": "ftp-srv ftp://127.0.0.1:2121 --root ./source",
"knex": "knex",
"knex:local": "PG_CONNECTION_STRING=postgres://postgres:mysecretpassword@localhost:5678/postgres knex",
"initdb": "node -r dotenv/config src/setup/initDb.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HSLdevcom/jore-graphql-import.git"
},
"keywords": [],
"author": "Hannes Junnila <hannes.junnila@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/HSLdevcom/jore-graphql-import/issues"
},
"homepage": "https://github.com/HSLdevcom/jore-graphql-import",
"dependencies": {
"@azure/storage-blob": "12.14.0",
"@babel/core": "^7.22.15",
"@babel/plugin-transform-flow-strip-types": "^7.22.5",
"@babel/preset-env": "^7.22.15",
"@babel/preset-react": "^7.22.15",
"basic-ftp": "^5.0.3",
"cron": "^2.4.3",
"date-fns": "^2.30.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"express-fileupload": "^1.1.5",
"express-react-views": "^0.11.0",
"fs-extra": "^11.1.1",
"iconv-lite": "^0.6.3",
"knex": "^2.5.1",
"knex-postgis": "^0.14.3",
"lodash-es": "^4.17.21",
"p-map": "^2.1.0",
"p-queue": "^7.4.1",
"pg": "^8.11.3",
"pg-connection-string": "^2.6.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"split2": "^4.2.0",
"unzipper": "^0.10.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.15",
"@types/fs-extra": "^11.0.1",
"eslint": "^8.48.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"prettier": "^3.0.3"
}
}