2026-02-13 18:20:29 -05:00
|
|
|
{
|
|
|
|
|
"name": "pluralflux",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"description": "",
|
2026-02-14 21:11:15 -05:00
|
|
|
"main": "src/bot.js",
|
2026-02-13 18:20:29 -05:00
|
|
|
"type": "module",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/pieartsy/PluralFlux.git"
|
|
|
|
|
},
|
|
|
|
|
"private": true,
|
|
|
|
|
"dependencies": {
|
2026-02-15 15:05:08 -05:00
|
|
|
"@fluxerjs/core": "^1.0.9",
|
2026-02-16 10:36:38 -05:00
|
|
|
"dotenv": "^17.3.1",
|
2026-02-13 18:20:29 -05:00
|
|
|
"pg": "^8.18.0",
|
|
|
|
|
"pg-hstore": "^2.3.4",
|
2026-02-15 23:09:27 -05:00
|
|
|
"pm2": "^6.0.14",
|
2026-02-15 16:19:59 -05:00
|
|
|
"sequelize": "^6.37.7",
|
|
|
|
|
"tmp": "^0.2.5"
|
2026-02-14 18:11:19 -05:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"jest": "^30.2.0"
|
2026-02-14 18:16:10 -05:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
2026-02-17 17:38:06 -05:00
|
|
|
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
2026-02-16 15:10:00 -05:00
|
|
|
},
|
|
|
|
|
"jest": {
|
|
|
|
|
"testEnvironment": "node",
|
|
|
|
|
"coveragePathIgnorePatterns": [
|
|
|
|
|
"/node_modules/"
|
|
|
|
|
],
|
2026-02-17 17:38:06 -05:00
|
|
|
"moduleFileExtensions": [
|
|
|
|
|
"js",
|
|
|
|
|
"json"
|
|
|
|
|
],
|
|
|
|
|
"testMatch": [
|
|
|
|
|
"**/__tests__/**/*.js",
|
|
|
|
|
"**/?(*.)+(spec|test).js"
|
|
|
|
|
],
|
2026-02-16 15:10:00 -05:00
|
|
|
"verbose": true
|
2026-02-13 18:20:29 -05:00
|
|
|
}
|
|
|
|
|
}
|