-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.55 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.55 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
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
108
{
"name": "jj-mms-v2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist",
"init": "mkdir dist && mkdir -p logs",
"backend-build": "npm run clean && npx tsc && cp .env* ./dist",
"frontend-dev": "npx rollup -c -w",
"frontend-build": "npx rollup -c",
"prebuild": "npm run clean && npm run init",
"build": "npm run backend-build && npm run frontend-build",
"start": "node ./dist",
"validate": "svelte-check",
"start:dev": "NODE_ENV=local npx tsc-watch -p tsconfig.json --onSuccess \"node dist/index.js\"",
"start:bind": "NODE_ENV=local npx tsc-watch -p tsconfig.json --onSuccess \"node dist/binding.js\"",
"start:consumer": "NODE_ENV=local npx tsc-watch -p tsconfig.json --onSuccess \"node dist/consumer.js\"",
"start:schedule": "NODE_ENV=local npx tsc-watch -p tsconfig.json --onSuccess \"node dist/schedule.js\"",
"db:init": "NODE_ENV=local npx ts-node ./tools/db.init.ts",
"line:init": "NODE_ENV=local npx ts-node ./tools/line.init.ts"
},
"author": "mike&rex",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-typescript": "^8.0.0",
"@tsconfig/svelte": "^1.0.0",
"@types/amqplib": "^0.5.17",
"@types/express": "^4.17.9",
"@types/hashids": "^1.0.32",
"@types/jsonwebtoken": "^8.5.2",
"@types/lodash": "^4.14.168",
"@types/moment": "^2.13.0",
"@types/multer": "^1.4.6",
"@types/node-fetch": "^2.5.8",
"@types/node-schedule": "^1.3.2",
"@types/sharp": "^0.28.0",
"@types/shortid": "0.0.29",
"rollup": "^2.52.6",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"svelte": "^3.0.0",
"svelte-check": "^1.0.0",
"svelte-preprocess": "^4.0.0",
"ts-node": "^9.1.1",
"tsc-watch": "^4.2.9",
"tslib": "^2.0.0",
"typescript": "^3.9.3"
},
"dependencies": {
"@google-cloud/bigquery": "^5.5.0",
"@line/bot-sdk": "^7.3.0",
"@line/liff": "^2.20.2",
"@types/cropperjs": "^1.3.0",
"@types/express-http-proxy": "^1.6.1",
"amqplib": "^0.7.1",
"aws-sdk": "^2.893.0",
"axios": "^0.21.1",
"base62": "^2.0.1",
"bcrypt": "^5.0.1",
"camel-toolbox": "^1.0.0",
"class-transformer": "^0.3.2",
"class-validator": "^0.13.1",
"comma-number": "^2.1.0",
"cookie-parser": "^1.4.5",
"cropperjs": "^1.5.12",
"crypto": "^1.0.1",
"crypto-js": "^4.1.1",
"dotenv": "^8.2.0",
"dotenv-flow": "^3.2.0",
"express": "^4.17.1",
"express-handlebars": "^5.2.0",
"express-http-proxy": "^1.6.2",
"hashids": "^2.2.8",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"luxon": "^1.25.0",
"mime-types": "^2.1.31",
"moment": "^2.29.1",
"multer": "^1.4.2",
"mysql2": "^2.3.3",
"nano-time": "^1.0.0",
"node-fetch": "^2.6.1",
"node-schedule": "^2.0.0",
"reflect-metadata": "^0.1.13",
"rollup-plugin-inject-process-env": "^1.3.1",
"sharp": "^0.28.3",
"shortid": "^2.2.16",
"sirv-cli": "^1.0.0",
"sv-bootstrap-modal": "^1.0.3",
"svelte-calendar": "^1.5.0",
"svelte-routing": "^1.6.0",
"svelte-select": "^3.17.0",
"sweetalert2": "^11.0.18",
"typedi": "^0.10.0",
"typeorm": "^0.2.30",
"typeorm-transactional-cls-hooked": "^0.1.20",
"typeorm-typedi-extensions": "^0.4.0",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.1",
"xlsx": "^0.17.0",
"xlsx-populate": "^1.21.0"
}
}