-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.71 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": "emperor-ruppy",
"version": "1.0.0-beta.1",
"description": "All rounder emperor with focus on developer 🐣",
"author": "Latipun <latifsulisyo.me@gmail.com> (https://latipun.dev)",
"license": "MIT",
"private": true,
"engines": {
"node": ">=16.13.0"
},
"packageManager": "yarn@3.1.1",
"repository": {
"type": "git",
"url": "https://github.com/latipun7/emperor-ruppy.git"
},
"scripts": {
"dev": "ts-node --files -r tsconfig-paths/register -r dotenv/config ./src/index.ts",
"build": "rimraf dist && tsc",
"start": "pm2 start ./pm2.yml",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"format": "prettier --check .",
"test": "jest",
"postinstall": "husky install || true"
},
"dependencies": {
"axios": "^0.24.0",
"common-tags": "^1.8.2",
"discord-akairo": "^8.1.0",
"discord.js": "^12.5.3",
"dotenv": "^10.0.0",
"emoji-regex": "^9.2.2",
"pg": "^8.7.1",
"pretty-ms": "^7.0.1",
"reflect-metadata": "^0.1.13",
"tsconfig-paths": "^3.12.0",
"typeorm": "^0.2.41",
"winston": "^3.3.3"
},
"devDependencies": {
"@latipun7/eslint-config": "^1.0.4",
"@latipun7/tsconfig": "^1.2.1",
"@types/common-tags": "^1.8.4",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.60",
"eslint": "^8.4.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"eslintConfig": {
"extends": "@latipun7"
},
"lint-staged": {
"**/*.{js,cjs,mjs,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*": "prettier --write --ignore-unknown"
}
}