-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.69 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
{
"name": "@ejhammond/jskit",
"version": "5.0.2",
"nonce": "3",
"author": "EJ Hammond <[email protected]>",
"description": "Common configurations for js/ts projects",
"repository": {
"url": "git+https://github.com/ejhammond/jskit.git"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"files": [
"configs",
"bin",
"utils"
],
"bin": {
"jskit-release": "bin/release.js",
"jskit-format": "bin/format.js",
"jskit-lint": "bin/lint.js",
"jskit-bootstrap": "bin/bootstrap.js"
},
"scripts": {
"format": "node ./bin/format.js",
"lint": "node ./bin/lint.js",
"release": "node ./bin/release.js"
},
"devDependencies": {
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"peerDependencies": {},
"dependencies": {
"@commitlint/cli": "^17.7.1",
"@ejhammond/eslint-plugin": "^5.0.1",
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.6",
"@semantic-release/npm": "^11.0.0",
"@semantic-release/release-notes-generator": "^12.0.0",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"conventional-changelog-eslint": "^5.0.0",
"cross-spawn": "^7.0.1",
"dotenv": "^16.3.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prompts": "^2.4.2",
"semantic-release": "^22.0.1"
}
}