-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1.16 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
{
"name": "digital-asset-portfolio-tracker",
"private": true,
"version": "0.1.0",
"description": "Bitcoin and Ethereum portfolio tracker showcasing Web3 and Blockchain on AWS",
"type": "module",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"eslint-plugin-unused-imports": "^2.0.0",
"pre-commit": "^1.2.2",
"prettier": "^2.8.8"
},
"scripts": {
"lint": "eslint . --ext jsx,ts,tsx",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css,md,json,html}\" --config .prettierrc.json",
"version-bump-alpha": "npm version prerelease -preid a --",
"version-bump-beta": "npm version prerelease -preid b --",
"version-bump-patch": "npm version patch --",
"version-bump-minor": "npm version minor --",
"version-bump-major": "npm version major --"
},
"pre-commit": [
"lint:fix",
"format"
]
}