-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.93 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.93 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"dependencies": {
"@microsoft/tsdoc": "^0.13.2",
"@types/google-apps-script": "^1.0.33",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.0",
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
},
"name": "chatapp",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"lint": "eslint --color --ext .ts . && tsc || true",
"fix": "eslint --color --fix --ext .ts . && tsc || true",
"docs": "typedoc --sourcefile-url-map ./sourcefile-map.json --tsconfig ./tsconfig.json --readme ./README.md"
},
"keywords": [],
"author": "",
"license": "MIT",
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"impliedStrict": true,
"project": [
"./tsconfig.json"
],
"tsconfigRootDir": "./"
},
"plugins": [
"@typescript-eslint"
],
"root": true,
"rules": {
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/class-name-casing": "off",
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/naming-convention": [
"error",
{
"selector": "class",
"format": [
"PascalCase"
],
"trailingUnderscore": "allow"
}
],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/no-non-null-assertion": "off"
}
},
"devDependencies": {
"typedoc-plugin-sourcefile-url": "^1.0.6"
}
}