-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.14 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
{
"name": "astranium",
"version": "0.0.1",
"description": "The official bot for the Astranium community.",
"main": "src/index.ts",
"license": "GPL-3.0",
"private": true,
"scripts": {
"build": "tsc",
"clean": "yarn lint && yarn format",
"db:format": "npx prisma format",
"db:generate": "npx prisma generate",
"db:migrate": "npx prisma migrate dev --name astranium",
"db:update": "yarn db:migrate && yarn db:generate",
"db:reset": "npx prisma db push --force-reset && node build/scripts/purgeMigrations.js && yarn db:update",
"dev": "nodemon",
"format": "prettier --write src build",
"lint": "eslint src --fix",
"prepare": "husky install",
"publish": "yarn build && yarn clean && git add . && git commit -m \"feat: Production build\" && git push origin master",
"start": "yarn build && node build/index.js"
},
"keywords": [
"community",
"events",
"fun",
"management",
"moderation"
],
"dependencies": {
"@prisma/client": "^4.12.0",
"chalk": "4.1.2",
"discord.js": "^14.6.0",
"dotenv": "^16.0.3",
"node-fetch": "2",
"prisma": "^4.12.0",
"timestring": "^6.0.0",
"tspath": "^2.6.8"
},
"devDependencies": {
"@types/module-alias": "^2.0.1",
"@types/node-fetch": "^2.6.2",
"@types/timestring": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"dotenv-cli": "^6.0.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"module-alias": "^2.2.2",
"nodemon": "^2.0.20",
"prettier": "^2.8.2",
"typescript": "^4.8.4"
},
"_moduleAliases": {
"@lib": "./build/lib",
"@scripts": "./build/scripts",
"@typings": "./build/typings",
"@core": "./build",
"@commands": "./build/commands",
"@subcommands": "./build/commands/subcommands",
"@listeners": "./build/listeners"
}
}