This repository was archived by the owner on Sep 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.72 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
{
"name": "@skyebot/api",
"version": "1.0.0",
"main": "build/index.js",
"scripts": {
"fix": "yarn lint:fix && yarn format:fix",
"lint": "eslint ./ --ext js,jsx,ts,tsx",
"lint:fix": "eslint ./ --ext js,jsx,ts,tsx --fix",
"format": "prettier --check \"./**/*.{js,jsx,ts,tsx}\"",
"format:fix": "prettier --write \"./**/*.{js,jsx,ts,tsx}\"",
"dev": "cross-env NODE_ENV=development ts-node-dev --respawn --no-notify --transpile-only -r ./scripts/enviroments.js -r tsconfig-paths/register src/index.ts",
"prebuild": "yarn run -T rimraf build",
"build": "yarn prebuild && yarn run -T babel src --extensions \".js,.ts\" --out-dir build --copy-files --no-copy-ignored",
"start": "cross-env NODE_ENV=production node -r ./scripts/enviroments.js -r ./scripts/register-paths.js build/index.js"
},
"dependencies": {
"async": "^3.2.2",
"axios": "^0.24.0",
"celebrate": "^15.0.0",
"chalk": "4.1.2",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"discord.js": "^13.4.0",
"dotenv-defaults": "^3.0.0",
"escape-html": "^1.0.3",
"express": "^4.17.2",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^6.2.0",
"jsonwebtoken": "^8.5.1",
"jw-paginate": "^1.0.4",
"moment": "^2.29.1",
"moment-duration-format": "^2.3.2",
"mongodb": "3.6.5",
"mongoose": "5.13.4",
"mongoose-paginate-v2": "^1.4.2",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.6.0",
"uuid": "^8.3.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.5",
"@babel/plugin-proposal-decorators": "^7.16.5",
"@babel/plugin-transform-typescript": "^7.16.1",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@types/async": "^3.2.11",
"@types/chalk": "^2.2.0",
"@types/cors": "^2.8.12",
"@types/dotenv-defaults": "^2.0.1",
"@types/escape-html": "^1.0.1",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.6",
"@types/mongoose-paginate-v2": "^1.4.2",
"@types/node": "^17.0.4",
"@types/uuid": "^8.3.3",
"@types/yup": "^0.29.13",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.4"
}
}