-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.06 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.06 KB
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
{
"name": "github-finder",
"version": "1.0.0",
"description": "github finder - user, code",
"main": "index.js",
"homepage": "https://github.com/kimyouknow/github-finder",
"scripts": {
"postinstall": "husky install",
"test": "jest",
"dev": "webpack-dev-server --config webpack/webpack.development.js",
"prod": "webpack-dev-server --config webpack/webpack.production.js",
"build:dev": "webpack --config webpack/webpack.development.js",
"build:prod": "webpack --config webpack/webpack.production.js",
"lint": "npx eslint --init",
"deploy": "npm run build:prod && gh-pages -d dist -b deploy",
"prepare": "husky install"
},
"author": "kimyouknow",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"dotenv": "^16.0.3",
"eslint": "^8.34.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"gh-pages": "^5.0.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.0",
"lint-staged": "^13.1.2",
"mini-css-extract-plugin": "^2.7.2",
"prettier": "^2.8.4",
"sass": "^1.58.1",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --ext .tsx --ext .ts ./src --fix"
],
"src/**": [
"prettier --write \"**/*.{js,jsx,ts,tsx,json,md,css}\""
]
}
}