-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.35 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
{
"name": "among",
"version": "1.0.0",
"description": "",
"main": ".eslintrc.js",
"private": true,
"scripts": {
"prepare": "husky install",
"precommit": "lint-staged",
"commitlint": "commitlint -e"
},
"lint-staged": {
"**/*.ts": [
"eslint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/PNU-SWEFI/Among-Front.git"
},
"workspaces": [
"packages/*"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PNU-SWEFI/Among/issues"
},
"homepage": "https://github.com/PNU-SWEFI/Among#readme",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"sort-package-json": "^1.57.0",
"typescript": "^4.7.4"
},
"packageManager": "[email protected]"
}