-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.57 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "payments-backend",
"version": "0.1.0",
"description": "Backend for payments-backend",
"scripts": {
"build": "rimraf lib && ttsc",
"build:api": "rimraf packages/api/lib && nestia sdk && npx copyfiles README.md packages/api && tsc -p tsconfig.api.json",
"dev": "npm run build -- --watch",
"package:api": "npm run build:api && cd packages/api && npm publish",
"reset:dev": "git pull && npm install && npm run build && npm run stop && npm run test -- --mode=dev && npm run start:updator:master && npm run start dev",
"start": "pm2 start lib/executable/server.js -i 0 --name payments-backend-backend-server --wait-ready --listen-timeout 120000 --kill-timeout 15000 --",
"start:local": "pm2 start lib/executable/server.js -i 2 --name payments-backend-backend-server --wait-ready --listen-timeout 120000 --kill-timeout 15000 -- local",
"start:updator:master": "pm2 start --name bbs-backend-updator-master lib/updator/master.js",
"start:updator:slave": "pm2 start --name bbs-backend-updator-slave lib/updator/slave.js",
"start:reload": "pm2 reload payments-backend-backend-server",
"stop": "pm2 delete payments-backend-backend-server",
"stop:updator:master": "pm2 delete bbs-backend-updator-master",
"stop:updator:slave": "pm2 delete bbs-backend-updator-slave",
"update": "node lib/executable/update",
"test": "node lib/test",
"test:update": "node lib/test/manual/update",
"tslint": "tslint -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "https://github.com/samchon/payments"
},
"author": "Jeongho Nam",
"license": "MIT",
"bugs": {
"url": "https://github.com/samchon/payments/issues"
},
"homepage": "https://github.com/samchon/payments",
"devDependencies": {
"@types/btoa": "^1.2.3",
"@types/cli": "^0.11.19",
"@types/express": "^4.17.12",
"@types/node": "^15.6.1",
"@types/uuid": "^8.3.0",
"cli": "^1.0.1",
"copyfiles": "^2.4.1",
"iamport-server-api": "^0.2.1",
"nestia": "^0.4.0",
"pm2": "^4.5.6",
"rimraf": "^3.0.2",
"sloc": "^0.2.1",
"toss-payments-server-api": "^0.2.1",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"ttypescript": "^1.5.12",
"typescript": "^4.5.2",
"typescript-is": "^0.18.2"
},
"dependencies": {
"encrypted-nestjs": "^0.1.7",
"fake-iamport-server": "^0.2.0",
"fake-toss-payments-server": "^0.2.1",
"git-last-commit": "^1.0.0",
"mutex-server": "^0.3.0",
"mysql": "^2.18.1",
"node-fetch": "^2.6.1",
"safe-typeorm": "^0.2.6",
"source-map-support": "^0.5.19",
"tstl": "^2.5.0"
}
}