-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.54 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
{
"name": "readthebin",
"version": "1.0.0",
"private": true,
"exports": "./build/index.js",
"type": "module",
"scripts": {
"build": "rimraf ./build/ && tsc -p ./tsconfig.prod.json",
"start": "node -r source-map-support/register -r dotenv/config ./build/index.js",
"dev": "nodemon --watch \"src/**/*.ts\" -e ts --exec \"yarn ts-node -r dotenv/config ./src/index.ts\"",
"lint": "eslint src --ext ts",
"format": "yarn lint --fix",
"test": "jest --testTimeout=10000 --detectOpenHandles --force-exit"
},
"author": "Read The Docs FR",
"license": "MIT",
"engines": {
"node": ">=15.0.0"
},
"dependencies": {
"@typescord/famfor": "^0.1.3",
"discord.js": "^13.6.0",
"got": "^12.0.3",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"dotenv": "^16.0.0",
"eslint": "^8.13.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"extensionsToTreatAsEsm": [".ts"],
"globals": {
"ts-jest": {
"useESM": true
}
}
}
}