-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.63 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"type": "module",
"name": "@digital-alchemy/core",
"description": "Application wiring, configuration, and boilerplate utilities",
"repository": {
"url": "git+https://github.com/Digital-Alchemy-TS/core"
},
"version": "24.11.4",
"author": {
"url": "https://github.com/zoe-codez",
"name": "Zoe Codez"
},
"homepage": "https://docs.digital-alchemy.app",
"scripts": {
"build": "rm -rf dist/; tsc -p tsconfig.lib.json",
"lint": "eslint src",
"prepublishOnly": "yarn build",
"test": "vitest",
"upgrade": "yarn up '@digital-alchemy/*'"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/Digital-Alchemy-TS/core/issues/new/choose"
},
"keywords": [
"nodejs",
"boilerplate",
"automation",
"typescript",
"core",
"digital-alchemy"
],
"funding": [
{
"url": "https://github.com/sponsors/zoe-codez",
"type": "GitHub"
}
],
"exports": {
".": "./dist/index.mjs",
"./testing": "./dist/testing/helpers/index.mjs"
},
"files": [
"dist/**/*"
],
"engines": {
"node": ">=20"
},
"dependencies": {
"chalk": "^5.3.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"ini": "^5.0.0",
"js-yaml": "^4.1.0",
"minimist": "^1.2.8",
"node-cron": "^3.0.3",
"uuid": "^11.0.3"
},
"devDependencies": {
"@cspell/eslint-plugin": "^8.16.0",
"@eslint/compat": "^1.2.3",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@faker-js/faker": "^9.2.0",
"@types/dotenv": "^8.2.3",
"@types/ini": "^4.1.1",
"@types/js-yaml": "^4.0.9",
"@types/minimist": "^1.2.5",
"@types/node": "^22.9.3",
"@types/node-cron": "^3.0.11",
"@types/sinonjs__fake-timers": "^8.1.5",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"chalk": "^5.3.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsonc": "^2.18.2",
"eslint-plugin-no-unsanitized": "^4.1.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sonarjs": "^2.0.4",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unicorn": "^56.0.1",
"ini": "^5.0.0",
"js-yaml": "^4.1.0",
"minimist": "^1.2.8",
"node-cron": "^3.0.3",
"prettier": "^3.3.3",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"type-fest": "^4.28.0",
"typescript": "^5.7.2",
"uuid": "^11.0.3",
"vitest": "^2.1.5"
},
"packageManager": "[email protected]"
}