This repository has been archived by the owner on Jan 16, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.04 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
59
60
{
"name": "@fishbot/mig",
"private": true,
"version": "1.0.0",
"type": "module",
"engines": {
"node": ">=16 <19"
},
"scripts": {
"husky": "husky install",
"lint": "eslint --cache --fix src",
"type-check": "tsc --noEmit",
"test": "cross-env NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules doppler run --print-config -- npx jest --runInBand",
"build": "rm -rf dist && mkdir dist && npm run build-es",
"build-ts": "tsc && tsc-alias --verbose",
"build-es": "node esbuild.cjs",
"start": "NODE_ENV=production doppler run --print-config -- node --experimental-specifier-resolution=node dist/index.js",
"start-dev": "tsc-alias --verbose && cross-env NODE_ENV=development doppler run --print-config -- node --experimental-specifier-resolution=node dist/index.js",
"dev": "tsc-watch --onSuccess \"npm run start-dev\""
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.ts": "tsc-files --noEmit src/types/global.d.ts"
},
"dependencies": {
"@fishbot/core": "^4.0.122",
"@fishbot/utils": "^3.0.59",
"dotenv-flow": "^3.2.0",
"mongodb": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@fishbot/dev": "^1.0.53",
"@jest/globals": "^29.3.1",
"@tsconfig/node-lts-strictest-esm": "^18.12.1",
"@types/dotenv-flow": "^3.2.0",
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"cross-env": "^7.0.3",
"esbuild": "^0.16.7",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.2",
"tsc-files": "^1.1.3",
"tsc-watch": "^5.0.3",
"typescript": "^4.9.4"
}
}