-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.68 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
{
"name": "discord-symbian",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"build:ts": "tsc -p .",
"watch:ts": "tsc -w -p .",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix src/js/**/*.ts",
"prepare": "husky install"
},
"repository": {
"url": "https://github.com/ruslang02/discord-symbian"
},
"author": "Ruslan Garifullin <[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"typescript": "^4.3.5"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-angular": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.2"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"commitlint": {
"extends": [
"@commitlint/config-angular"
],
"rules": {
"scope-case": [
2,
"always",
"pascal-case"
],
"type-enum": [
2,
"always",
[
"chore",
"build",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test"
]
]
}
}
}