-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.43 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "ssh-dev-scripts",
"version": "1.2.1",
"description": "A set of scripts and utilities to make setting up a consistent npm project easier",
"files": [
"src"
],
"scripts": {
"build": "echo \"There is no build script for the dev scripts 😉\"",
"format": "prettier --ignore-path .gitignore --write .",
"prepare": "husky install",
"validate": "prettier --ignore-path .gitignore --check ."
},
"bin": {
"ssh-dev-scripts-setup": "./scripts/setup.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SSHari/ssh-dev-scripts.git"
},
"publishConfig": {
"tag": "latest"
},
"author": "Sai Hari",
"license": "MIT",
"bugs": {
"url": "https://github.com/SSHari/ssh-dev-scripts/issues"
},
"homepage": "https://github.com/SSHari/ssh-dev-scripts#readme",
"dependencies": {
"@babel/core": "^7.18.2",
"@babel/plugin-transform-runtime": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.0",
"@types/jest": "^28.1.1",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"babel-jest": "^28.1.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-testing-library": "^5.5.1",
"husky": "^8.0.1",
"jest": "^28.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"rollup": "^2.75.5",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^19.0.2",
"typescript": "^4.7.3"
},
"keywords": [
"scripts",
"babel",
"eslint",
"javascript",
"jest",
"js",
"oss",
"prettier",
"rollup",
"semantic-release",
"testing-library",
"typescript"
]
}