generated from jsynowiec/node-typescript-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.6 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
{
"name": "@lamo/bot",
"author": "Dejan Bozhinoski <bozhinoski@icloud.com>",
"version": "0.1.0",
"description": "Discord Bot that integrates Lost Ark Market Online API",
"engines": {
"node": ">= 16.13"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build:release",
"dev": "ts-node -r tsconfig-paths/register src/dev.ts",
"watch": "nodemon --exec ts-node -r tsconfig-paths/register src/dev.ts",
"cmds:install": "ts-node -r tsconfig-paths/register src/cmds.ts",
"clean": "rimraf coverage dist tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prettier": "prettier --config .prettierrc --write ."
},
"dependencies": {
"axios": "^0.27.2",
"discord-interactions": "^3.2.0",
"express": "^4.18.1",
"moment": "^2.29.4",
"tslib": "~2.4",
"tslog": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "~27.5",
"@types/node": "~16",
"@typescript-eslint/eslint-plugin": "~5.26",
"@typescript-eslint/parser": "~5.26",
"eslint": "~8.16",
"eslint-config-prettier": "~8.5",
"eslint-plugin-jest": "~26.2",
"jest": "~28.1",
"nodemon": "^2.0.19",
"prettier": "~2.6",
"rimraf": "~3.0",
"ts-jest": "~28.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"tsutils": "~3.21",
"typescript": "~4.7"
},
"volta": {
"node": "16.13.0"
}
}