-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.11 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
{
"name": "picsy-bot",
"version": "1.0.0",
"description": "",
"main": "dist/index.cjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"bundle": "tsc && esbuild --platform=node --external:mock-aws-s3 --external:aws-sdk --external:nock --external:nlapack --bundle --outfile=dist/index.cjs tmp/index.js",
"clean": "rm -rf dist tmp",
"build": "npm run clean && npm run bundle",
"bot": "npm run build && node dist/index.cjs",
"start": "ts-node src/index.ts",
"typeorm": "typeorm-ts-node-commonjs"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.10",
"@types/node-cron": "^3.0.10",
"@types/nodemailer": "^6.4.8",
"esbuild": "^0.17.19",
"ts-node": "^10.9.1",
"typescript": "4.5.2"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"discord.js": "^14.11.0",
"dotenv": "^16.1.4",
"google-spreadsheet": "^3.3.0",
"nlapack": "^2.0.9",
"node-cron": "^3.0.2",
"node-fetch": "^3.3.1",
"nodemailer": "^6.9.3",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.1.6",
"typeorm": "0.3.16"
}
}