-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.73 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
84
85
86
87
88
89
90
91
92
{
"name": "gh-repos-showcase",
"version": "1.4.3",
"description": "Render your repos in an nice visual way!",
"packageManager": "[email protected]",
"type": "module",
"source": "src/index.html",
"main": "lib/main.cjs",
"types": "lib/types.d.ts",
"module": "lib/module.mjs",
"files": [
"lib/*"
],
"workspaces": [
"package-test"
],
"browserslist": [
"last 2 version",
"> 1%",
"IE 10"
],
"scripts": {
"start": "parcel --no-cache",
"build": "yarn clean && yarn parcel build src/GHReposShowcase.tsx --dist-dir lib/",
"clean": "del lib/ dist/",
"lint": "eslint \"src/**/*.tsx\" --fix",
"format": "prettier -u --write \".\"",
"check": "tsc --noEmit",
"release:major": "standard-version --release-as major",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"setup:init": "del README.md CHANGELOG.md .git/ parcel-tsx-console.gif && git init && yarn husky install"
},
"dependencies": {
"@swc/helpers": "^0.3.13",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"regenerator-runtime": "^0.13.9",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@parcel/packager-ts": "2.5.0",
"@parcel/transformer-typescript-types": "2.5.0",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.183",
"@types/eslint": "^8",
"@types/node": "^17.0.33",
"@types/prettier": "^2",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/styled-components": "^5",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"del-cli": "^4.0.1",
"eslint": "^8.15.0",
"eslint-config-airbnb": "latest",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-react-perf": "^3.3.1",
"eslint-plugin-unicorn": "^42.0.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"parcel": "^2.5.0",
"prettier": "^2.6.2",
"react-is": "^18.1.0",
"standard-version": "^9.3.2",
"tslib": "^2.4.0",
"typescript": "^4.6.4",
"typescript-plugin-styled-components": "^2.0.0",
"typescript-styled-plugin": "^0.18.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devastion/gh-repos-showcase.git"
},
"keywords": [
"parcel",
"react",
"typescript"
],
"author": "Dimitar Banev",
"license": "MIT",
"bugs": {
"url": "https://github.com/devastion/gh-repos-showcase/issues"
},
"homepage": "https://github.com/devastion/gh-repos-showcase#readme"
}