-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 889 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 889 Bytes
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
{
"name": "giveaway_system",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest --coverage"
},
"dependencies": {
"date-fns": "^4.1.0",
"discord.js": "^14.7.1",
"node-cache": "^5.1.2",
"sequelize": "^6.28.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"ts-jest": "^29.0.5",
"typescript": "^5.1.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"detectOpenHandles": true,
"forceExit": true,
"moduleDirectories": [
"node_modules",
"src"
],
"moduleNameMapper": {
"^@utils/(.*)$": "<rootDir>/src/utils/$1",
"^@models/(.*)$": "<rootDir>/src/models/$1",
"^@commands/(.*)$": "<rootDir>/src/commands/$1",
"^@tests/(.*)$": "<rootDir>/src/tests/$1"
}
},
"devDependencies": {
"@types/node": "^20.17.17",
"@types/sequelize": "^4.28.20"
}
}