-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.9 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
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
93
{
"name": "@publica.re/react-git-taskbar",
"version": "0.1.4",
"description": "Gittify your webpage",
"author": {
"name": "David Baumgartner",
"email": "dv@bmgr.me",
"url": "https://dv.bmgr.me"
},
"license": " GPL-3.0-or-later",
"homepage": "https://react-git-taskbar.publica.re/",
"bugs": {
"url": "https://github.com/publica-re/react-git-taskbar/issues",
"email": "dv@bmgr.me"
},
"repository": "publica-re/@publica.re/react-git-taskbar",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.tsx",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"start-example": "cd example && yarn install && yarn start",
"build-example": "cd example && yarn install && yarn build",
"docs": "typedoc --out docs src --stripInternal",
"dev-serve-docs": "yarn docs && cd docs && python -m http.server",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@storybook/addon-actions": "^6.0.10",
"@storybook/addon-essentials": "^6.0.10",
"@storybook/addon-links": "^6.0.10",
"@storybook/addons": "^6.0.10",
"@storybook/preset-create-react-app": "^3.1.4",
"@storybook/react": "^6.0.10",
"@storybook/theming": "^6.0.10",
"@types/jest": "^25.1.4",
"@types/react": "^16.9.27",
"@types/react-dom": "^16.9.7",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"microbundle-crl": "^0.13.10",
"npm-run-all": "^4.1.5",
"react-is": "^16.13.1",
"react-scripts": "^3.4.1",
"typescript": "^3.7.5"
},
"files": [
"dist"
],
"dependencies": {
"@fluentui/react": "^7.128.1",
"@isomorphic-git/lightning-fs": "^4.3.0",
"@material-ui/icons": "^4.9.1",
"@publica.re/react-git-provider": "^0.1.0",
"@types/diff": "^4.0.2",
"@types/lodash": "^4.14.159",
"@types/mime": "^2.0.3",
"@types/shortid": "^0.0.29",
"bind-decorator": "^1.0.11",
"client-oauth2": "^4.3.3",
"diff": "^4.0.2",
"eventemitter3": "^4.0.4",
"i18next": "^19.6.3",
"i18next-browser-languagedetector": "^6.0.0",
"i18next-http-backend": "^1.0.18",
"isomorphic-git": "^1.7.4",
"jsdiff": "^1.1.1",
"jszip": "^3.5.0",
"lodash": "^4.17.19",
"mime": "^2.4.6",
"path": "^0.12.7",
"react-diff-viewer": "^3.1.1",
"react-i18next": "^11.7.0",
"shortid": "^2.2.15"
}
}