This repository has been archived by the owner on Apr 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.53 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
{
"name": "@cougargrades/importer",
"version": "2.0.5",
"description": "Imports data into cougargrades.io",
"main": "./dist/index.js",
"bin": {
"cougarimport": "./dist/index.js"
},
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"build": "./node_modules/typescript/bin/tsc -p .",
"watch": "nodemon --watch src/ --ext js,mjs,json,ts --exec 'clear; npm run build'",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cougargrades/importer.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/cougargrades/importer/issues"
},
"homepage": "https://github.com/cougargrades/importer#readme",
"dependencies": {
"@au5ton/snooze": "^1.0.3",
"@cougargrades/types": "0.0.41",
"@types/bull": "^3.12.1",
"@types/bull-board": "^0.6.0",
"@types/cli-progress": "^3.4.2",
"@types/express": "^4.17.3",
"@types/node": "^13.9.1",
"@types/node-fetch": "^2.5.5",
"@types/tar": "^4.0.3",
"bull": "^3.13.0",
"bull-board": "^0.7.0",
"chalk": "^3.0.0",
"cli-progress": "^3.6.0",
"commander": "^5.0.0",
"csv-parse": "^4.8.8",
"express": "^4.17.1",
"get-port": "^5.1.1",
"node-fetch": "^2.6.0",
"open": "^7.0.3",
"query-string": "^6.11.1",
"stream-transform": "^2.0.1",
"tar": "^6.0.5"
},
"devDependencies": {
"nodemon": "^2.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
}
}