-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.02 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
{
"name": "poke-guesser-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"start": "[ -f build/index.js ] && node build/index.js || node index.js",
"startts": "ts-node src/index.ts",
"check-format": "prettier --check .",
"format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"pg": "^8.11.0",
"sequelize": "^6.37.1"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/node": "^20.11.19",
"jest": "^29.5.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"js",
"jsx",
"json",
"ts",
"tsx"
],
"roots": [
"<rootDir>",
"<rootDir>/test"
],
"transform": {
"^.+\\.m?[tj]sx?$": [
"ts-jest",
{}
]
}
}
}