-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.25 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "pos-imports",
"version": "1.1.0",
"description": "POS Imports is used by JAX Spirits in Cumming, GA (and others). Their POS system is set to export an XML file every 12 hours and upload to an FTP, which is collected and passed to Sellr API for importing.",
"main": "build/app.js",
"scripts": {
"postinstall": "bower install --config.interactive=false && gulp build",
"build": "gulp build",
"dev": "gulp dev",
"test": "npm run lint && echo Skipping tests...",
"start": "npm run start:app",
"start:app": "node build/app.js",
"start:clock": "node build/clock.js",
"start:web": "node build/web/server.js",
"lint": "tslint --project tsconfig.json",
"lint-fix": "tslint --project tsconfig.json --fix",
"format-check": "prettier --config ./.prettierrc --list-different \"src/**/*{.ts,.js,.json,.css,.scss}\"",
"format-fix": "pretty-quick",
"format-fix-staged": "pretty-quick --staged",
"fix": "concurrently \"npm run format-fix\" \"npm run lint-fix\"",
"precommit": "npm run format-fix-staged"
},
"engines": {
"node": "8.9.4"
},
"cacheDirectories": [
"node_modules"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sllr/pos-imports.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sllr/pos-imports/issues"
},
"homepage": "https://github.com/sllr/pos-imports#readme",
"devDependencies": {
"@types/cron": "^1.3.0",
"@types/dotenv": "^4.0.3",
"@types/expect.js": "^0.3.29",
"@types/express": "^4.16.0",
"@types/ftp": "^0.3.29",
"@types/lodash": "^4.14.109",
"@types/minimatch": "^3.0.3",
"@types/mocha": "^5.2.1",
"@types/node": "^10.3.0",
"@types/redis": "^2.8.6",
"@types/slug": "^0.9.0",
"@types/winston": "^2.3.9",
"@types/xml2js": "^0.4.3",
"bower": "^1.8.4",
"cli-clear": "^1.0.4",
"concurrently": "^3.6.0",
"del": "^3.0.0",
"dotenv": "^6.0.0",
"expect.js": "^0.3.1",
"ftp-server": "^0.1.0",
"gulp": "^3.9.1",
"gulp-karma": "0.0.5",
"gulp-run": "^1.7.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-tslint": "^8.1.3",
"gulp-typescript": "^4.0.2",
"husky": "^0.14.3",
"karma": "^2.0.2",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-typescript": "^3.0.12",
"mocha": "^5.2.0",
"prettier": "^1.13.7",
"pretty-quick": "^1.6.0",
"run-sequence": "^2.2.1",
"strip-json-comments": "^2.0.1",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.9.1"
},
"dependencies": {
"axios": "^0.18.0",
"basic-ftp": "^2.12.3",
"cron": "^1.3.0",
"csv-parse": "^2.5.0",
"express": "^4.16.3",
"express-promise-router": "^3.0.2",
"forever": "^0.15.3",
"fs-extra": "^6.0.1",
"ftp": "^0.3.10",
"http": "0.0.0",
"inversify": "^4.13.0",
"lodash": "^4.17.10",
"minimatch": "^3.0.4",
"moment": "^2.22.2",
"morgan": "^1.9.0",
"redis": "^2.8.0",
"reflect-metadata": "^0.1.12",
"slug": "^0.9.1",
"stream-to-string": "^1.1.0",
"winston": "^2.4.2",
"xml2js": "^0.4.19"
}
}