-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.49 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
{
"name": "projects-bot",
"version": "1.0.2",
"description": "A Discord bot to validate and publish projects showcase submissions.",
"main": "lib/index.js",
"engines": {
"node": "18.x"
},
"scripts": {
"start": "nodemon lib/index.js",
"dev": "concurrently --kill-others --prefix [{name}] --names tsc,cleaner,node \"npm:build:watch\" \"npm:cleaner\" \"npm:start\"",
"build": "tsc",
"build:watch": "tsc --watch --preserveWatchOutput",
"cleaner": "ts-cleaner --dist lib --watch",
"sync:dev": "slash-up sync -e development",
"sync:prod": "slash-up sync --debug",
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "husky install",
"deploy-form": "clasp push",
"deploy-migrations": "prisma migrate deploy",
"doc": "typedoc --out docs src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheCodingDen/projects-bot.git"
},
"author": "The Coding Den",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheCodingDen/projects-bot/issues"
},
"homepage": "https://github.com/TheCodingDen/projects-bot#readme",
"dependencies": {
"@discordjs/builders": "^1.5.0",
"@discordjs/rest": "^1.6.0",
"@prisma/client": "^4.0.0",
"discord-api-types": "^0.36.1",
"discord.js": "^14.8.0",
"dotenv-safe": "^8.2.0",
"fastify": "^3.29.4",
"graphql": "^16.5.0",
"graphql-request": "^4.3.0",
"koa": "^2.13.4",
"pino": "^8.1.0",
"pino-pretty": "^8.1.0",
"prisma": "^4.0.0",
"slash-create": "^5.9.0",
"slash-up": "^1.2.0"
},
"devDependencies": {
"@google/clasp": "^2.4.1",
"@types/dotenv-safe": "^8.1.2",
"@types/fs-extra": "^9.0.13",
"@types/google-apps-script": "^1.0.53",
"@types/jest": "^28.1.5",
"@types/koa": "^2.13.4",
"@types/node": "^18.0.3",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"concurrently": "^7.3.0",
"eslint": "^8.19.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-tsdoc": "^0.2.16",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.19",
"ts-cleaner": "^1.0.5",
"ts-jest": "^28.0.5",
"typedoc": "^0.23.7",
"typescript": "^4.7.4"
}
}