generated from dsfx3d/generator-ts-workspace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.27 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
{
"name": "eslint-config-dsfx3d",
"version": "0.1.6",
"description": "An opinionated ESLint config for TypeScript projects",
"repository": "dsfx3d/eslint-config-dsfx3d",
"type": "commonjs",
"files": [
"index.js"
],
"scripts": {
"lint": "eslint . && prettier -c *.js",
"release": "pnpm run test && changelogen --release",
"test": "pnpm run lint",
"prepare": "husky install"
},
"author": "Yashodhan Singh <dsfx3d@gmail.com>",
"license": "ISC",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-unjs": "^0.2.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-sonarjs": "^0.21.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"changelogen": "^0.5.3",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.46.0",
"husky": "^8.0.0",
"prettier": "^3.0.1",
"typescript": "^5.1.6"
},
"peerDependencies": {
"eslint": "*",
"typescript": "*"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}