-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
78 lines (78 loc) · 2.36 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
{
"name": "ivebot",
"version": "4.0-alpha.2",
"description": "The bot that created the iPhone X.",
"main": "src/index.ts",
"type": "module",
"private": true,
"repository": "https://github.com/retrixe/IveBot.git",
"scripts": {
"prepare": "husky install",
"lint": "eslint . --ext js,jsx,ts,tsx && tsc --noEmit && graphql-schema-linter && cd dashboard && tsc",
"start": "node --enable-source-maps lib/index.js --production",
"build": "tsc",
"dev": "nodemon src/index.ts",
"mongo": "mongod --dbpath=database"
},
"author": "Ibrahim Ansari <[email protected]>",
"license": "Apache-2.0",
"engines": {
"node": ">=12.20.0"
},
"dependencies": {
"@projectdysnomia/dysnomia": "^0.1.3",
"fuse.js": "^7.0.0",
"json5": "^2.2.1",
"mathjs": "^12.4.0",
"moment": "^2.29.4",
"mongodb": "^6.3.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@tsconfig/node12": "^12.1.1",
"@types/node": "^20.5.7",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.48.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"graphql": "^16.8.0",
"graphql-schema-linter": "^3.0.1",
"husky": "^9.0.11",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"graphql-schema-linter": {
"rules": [
"arguments-have-descriptions",
"defined-types-are-used",
"deprecations-have-a-reason",
"descriptions-are-capitalized",
"enum-values-all-caps",
"enum-values-have-descriptions",
"enum-values-sorted-alphabetically",
"fields-are-camel-cased",
"fields-have-descriptions",
"input-object-fields-sorted-alphabetically",
"input-object-values-are-camel-cased",
"input-object-values-have-descriptions",
"interface-fields-sorted-alphabetically",
"types-are-capitalized",
"types-have-descriptions"
],
"disabledRules": [
"type-fields-sorted-alphabetically"
],
"schemaPaths": [
"dashboard/schema.graphql"
]
}
}