-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.84 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.84 KB
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
{
"name": "api-data-loader",
"version": "0.0.1",
"description": "API GEN 하위프로젝트 - data loader",
"main": "index.js",
"scripts": {
"test": "mocha -r ts-node/register ./test/*.test.ts",
"start": "set debug=* && ts-node-dev --ignore-watch node_modules --respawn --transpileOnly ./src/index.ts",
"testServer": "set debug=* && NODE_ENV=test ts-node-dev --ignore-watch node_modules --respawn --transpileOnly ./src/index.ts",
"build": "tsc -p .",
"deploy-stage": "scp property-stage.json ubuntu@13.125.199.14:/home/ubuntu/loader/property.json && ssh ubuntu@13.125.199.14 'cd loader && git pull' && ssh ubuntu@13.125.199.14 'cd loader && make stage'",
"log-stage": " ssh ubuntu@13.125.199.14 'cd loader && make docker-log'"
},
"repository": {
"type": "git",
"url": "git@gitlab.com:promptech1/api-gen/api-data-loader.git"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^8.0.29",
"chai": "^4.2.0",
"mocha": "^7.1.2",
"nodemon": "^2.0.2",
"ts-node": "3.3.0",
"typescript": "3.3.3333"
},
"dependencies": {
"@types/axios": "^0.14.0",
"@types/bull": "^3.14.0",
"@types/exceljs": "^1.3.0",
"@types/express": "^4.17.3",
"@types/lodash": "^4.14.152",
"aws-sdk": "^2.788.0",
"axios": "^0.19.2",
"bull": "^3.15.0",
"class-validator": "^0.12.2",
"csv": "^5.3.2",
"exceljs": "^3.9.0",
"express": "^4.17.1",
"iconv-lite": "^0.6.2",
"jschardet": "^2.2.1",
"mysql": "^2.14.1",
"node-cubrid": "^3.0.0",
"ts-node-dev": "^1.0.0-pre.44",
"typeorm": "^0.2.24",
"typescript": "^3.8.3"
}
}