This repository has been archived by the owner on Jan 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
78 lines (78 loc) · 1.8 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
{
"name": "@githubnext/blocks",
"version": "2.3.5",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"typings": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"files": [
"bin",
"dist",
"scripts",
"src",
"tsconfig.json"
],
"scripts": {
"build": "tsup --dts",
"prepublish": "yarn build"
},
"bin": {
"blocks": "./bin/blocks.js"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@loadable/component": "^5.15.0",
"@octokit/openapi-types": "^12.11.0",
"@octokit/types": "^6.0.0",
"@primer/octicons-react": "^17.3.0",
"@primer/react": "^35.15.1",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"@vitejs/plugin-react": "^3.0.1",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"cross-spawn": "^7.0.3",
"dotenv": "^16.0.1",
"dotenv-expand": "^8.0.3",
"esbuild": "0.14.54",
"express": "^4.18.1",
"lodash.uniqueid": "^4.0.1",
"minimist": "^1.2.6",
"parse-git-config": "^3.0.0",
"picomatch-browser": "^2.2.6",
"prettier": "^2.6.2",
"react-error-boundary": "^3.1.4",
"react-query": "^3.39.0",
"styled-components": "^5.3.5",
"twind": "^0.16.17",
"vite": "^4.0.4"
},
"devDependencies": {
"@types/loadable__component": "^5.13.4",
"@types/lodash.uniqueid": "^4.0.6",
"@types/picomatch": "^2.3.0",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"tsup": "^5.6.0",
"typescript": "^4.4.4",
"use-debounce": "^8.0.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}