-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·73 lines (73 loc) · 2.44 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "ifhany",
"version": "1.0.0",
"author": "Dev Myna <var.devmyna@gmail.com> (https://devmyna.xyz)",
"main": "./dist/src/index.js",
"dependencies": {
"@prisma/client": "5.18.0",
"anchorme": "^3.0.5",
"axios": "^1.7.3",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"moment": "^2.29.4",
"node-cache": "^5.1.2",
"prisma": "5.18.0",
"proper-lockfile": "^4.1.2",
"ts-results": "^3.3.0",
"typescript": "^5.0.4"
},
"scripts": {
"start": "clear; node .",
"dev": "docker rm ifhany_db; docker-compose -f docker-compose.yml -f config/docker-compose_dev.yml up --build --remove-orphans ",
"test": "docker-compose run --entrypoint './scripts/on-container_test.bash' app",
"devenv": "./scripts/dev-init --no-clean",
"dev-cached": "./scripts/dev-init --no-build",
"watch": "tsc -w",
"build": "./scripts/build",
"build-cl": "rm -r ./dist/*",
"build-doc": "npx typedoc --plugin @mxssfd/typedoc-theme --theme my-theme ./src/**/*.ts"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@mxssfd/typedoc-theme": "^1.1.2",
"@swc/core": "^1.3.69",
"@types/chai": "^4.3.5",
"@types/jest": "^29.5.3",
"@types/mock-fs": "^4.13.1",
"@types/proper-lockfile": "^4.1.2",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^10.0.15",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"babel-jest": "^29.6.1",
"chai": "^4.3.7",
"commitlint": "^17.7.1",
"dts-gen": "^0.6.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.6.1",
"mock-fs": "^5.2.0",
"proxyquire": "^2.1.3",
"sinon": "^15.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.7",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.24.8",
"typedoc-material-theme": "^1.0.1",
"typescript-json-schema": "^0.62.0"
},
"husky": {
"hooks": {
"commit-msg": "npx commitlint -E HUSKY_GIT_PARAMS"
}
},
"_moduleAliases": {
"/": "dist/src",
"$": "dist/config/default",
"@": "dist/src/lib",
">": "dist/src/commands"
}
}