-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 1.98 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
{
"name": "node-bambu",
"license": "MIT",
"scripts": {
"nx": "nx",
"preinstall": "npx only-allow npm",
"prepare": "husky install"
},
"dependencies": {
"@fastify/autoload": "^5.7.1",
"@fastify/sensible": "^5.2.0",
"fastify": "^4.13.0",
"fastify-plugin": "^4.5.0"
},
"devDependencies": {
"@node-bambu/discord": "^0.5.1",
"@nrwl/eslint-plugin-nx": "^16.0.3",
"@nrwl/js": "^16.0.3",
"@nrwl/linter": "^16.0.3",
"@nrwl/node": "^16.0.3",
"@nrwl/workspace": "^16.0.3",
"@nx/esbuild": "^16.1.1",
"@nx/js": "^16.1.1",
"@nx/node": "^16.1.1",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.49",
"@swc/helpers": "^0.5.1",
"@types/eslint": "^8.37.0",
"@types/node": "^18.7.1",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"dotenv": "^16.0.3",
"esbuild": "^0.17.17",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"eslint-plugin-unicorn": "^46.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"lerna": "^6.6.1",
"lint-staged": "^13.2.1",
"nx": "^16.0.3",
"prettier": "^2.8.7",
"syncpack": "^9.8.4",
"tslib": "^2.5.0",
"tsx": "^3.12.6",
"typescript": "^5.0.4"
},
"lint-staged": {
"**/package.json": [
"syncpack fix-mismatches",
"syncpack format",
"syncpack set-semver-ranges"
],
"*": [
"nx affected:lint --fix --files",
"nx format:write --files"
]
},
"packageManager": "[email protected]",
"private": true,
"syncpack": {
"sortFirst": [
"name",
"description",
"version",
"author",
"license",
"scripts"
],
"semverRange": "^",
"indent": " "
},
"workspaces": [
"apps/bot",
"packages/core",
"packages/discord",
"packages/twitch"
]
}