-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.3 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
{
"name": "locations-microservice",
"version": "0.0.1",
"description": "Microservice for MiataBot location commands",
"type": "module",
"engines": {
"node": ">= 16.13 <17"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/node": "~16.11",
"@typescript-eslint/eslint-plugin": "~5.14",
"@typescript-eslint/parser": "~5.14",
"eslint": "~8.11",
"eslint-config-prettier": "~8.5",
"prettier": "~2.5",
"rimraf": "~3.0",
"tsutils": "~3.21",
"typescript": "~4.6"
},
"scripts": {
"start": "node build/main.js",
"clean": "rimraf build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts",
"prettier": "prettier --config \".prettierrc\" --ignore-path \".prettierignore\" -l --write \"**/*.{json,ts}\""
},
"author": "Mario Muñiz <[email protected]>",
"dependencies": {
"@discordjs/rest": "^0.4.1",
"alasql": "^1.7.3",
"discord-api-types": "^0.32.0",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"firebase-admin": "^10.1.0",
"state-country": "^1.0.7",
"tslib": "~2.3.1"
},
"volta": {
"node": "16.14.2"
}
}