-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.16 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
{
"name": "waka-importer",
"version": "1.0.0",
"description": "Waka GTFS Importer",
"main": "index.ts",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel server --out-dir lib --extensions \".ts,.tsx\" --copy-files",
"start": "node lib | bunyan -L -o short",
"bs": "npm run build:js && npm start",
"lint": "eslint server --ext .ts",
"prettier": "prettier --write server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dymajo/waka-importer.git"
},
"keywords": [
"gtfs",
"auckland",
"transport",
"at",
"hop",
"transit",
"dymajo",
"typescript",
"tfnsw",
"sydney",
"sydneytrains"
],
"author": "Dymajo Ltd.",
"license": "MIT",
"bugs": {
"url": "https://github.com/dymajo/waka-importer/issues"
},
"homepage": "https://github.com/dymajo/waka-importer#readme",
"dependencies": {
"@types/bunyan": "^1.8.6",
"@types/mssql": "^6.0.0",
"@types/node": "^13.1.1",
"@types/rimraf": "^3.0.0",
"aws-sdk": "^2.596.0",
"axios": "^0.19.0",
"bunyan": "^1.8.12",
"csv-parse": "^4.8.3",
"dotenv": "^8.2.0",
"extract-zip": "^2.0.0",
"form-data": "^3.0.0",
"fp-ts": "^2.5.3",
"io-ts": "^2.1.3",
"mssql": "^6.0.0",
"p-ratelimit": "^0.11.0",
"require-env": "^0.2.1",
"rimraf": "^3.0.0",
"source-map-support": "^0.5.16",
"stream-transform": "^2.0.1"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"prettier": "^2.0.0",
"typescript": "^3.8.3"
}
}