-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.41 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.41 KB
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
{
"name": "ivebot",
"version": "4.0.0",
"description": "The bot that created the iPhone X.",
"main": "src/index.ts",
"type": "module",
"private": true,
"repository": "https://github.com/retrixe/IveBot.git",
"scripts": {
"postinstall": "husky",
"lint": "tsc --noEmit && eslint --cache --cache-strategy content --cache-location .eslintcache/ .",
"start": "node --enable-source-maps lib/index.js --production",
"build": "tsc",
"dev": "node --watch src/index.ts",
"mongo": "mongod --dbpath=database"
},
"author": "Ibrahim Ansari <ansari.ibrahim1@gmail.com>",
"license": "Apache-2.0",
"engines": {
"node": ">=23.6.0"
},
"packageManager": "yarn@4.9.2",
"workspaces": [
"dashboard"
],
"dependencies": {
"@projectdysnomia/dysnomia": "^0.2.3",
"fuse.js": "^7.1.0",
"json5": "^2.2.1",
"mathjs": "^14.5.2",
"moment": "^2.29.4",
"mongodb": "^6.16.0",
"ms": "^2.1.3"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@tsconfig/node24": "^24.0.1",
"@types/node": "^22.15.29",
"@yarnpkg/types": "^4.0.1",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.18.0",
"eslint-plugin-prettier": "5.3.1",
"eslint-plugin-promise": "^7.2.1",
"husky": "^9.1.7",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.0"
}
}