forked from liuliu-dev/CommitGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.58 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": "@dreamcatcher-tech/commit-graph",
"version": "2.2.6",
"homepage": "https://liuliu-dev.github.io/CommitGraph/",
"author": "Liu Liu <liuliu.developer@gmail.com>",
"description": "A React component to visualize a commit graph.",
"contributors": [
{
"name": "Xiang Zhu",
"email": "zxwind@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/dreamcatcher-tech/CommitGraph"
},
"license": "MIT",
"keywords": [
"commit",
"graph",
"react"
],
"scripts": {
"dev": "next dev",
"build": "rollup -c --bundleConfigAsCjs",
"start": "next start",
"lint": "next lint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "jest",
"yalc:publish": "npm run build && yalc publish",
"yalc:push": "npm run build && yalc push",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css}\"",
"ci": "npm-run-all prettier lint test build",
"deploy-storybook": "gh-pages -d storybook-static"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"dependencies": {
"@dolthub/web-utils": "^0.1.5",
"classnames": "^2.3.2",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"react-infinite-scroller": "^1.2.6",
"react-tooltip": "^5.26.3",
"reactjs-popup": "^2.0.6"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/nextjs": "^8.0.0",
"@storybook/react": "^8.0.0",
"@types/react": "^18.2.57",
"@types/react-infinite-scroller": "^1.2.5",
"@typescript-eslint/eslint-plugin": "8.5.0",
"@typescript-eslint/parser": "8.6.0",
"eslint-config-airbnb-base": "latest",
"eslint-config-airbnb-typescript": "latest",
"eslint-config-prettier": "^9.1.0",
"gh-pages": "^6.1.1",
"jest": "^29.7.0",
"next": "^14.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"rollup": "^4.12.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^8.0.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2",
"yalc": "^1.0.0-pre.53"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts"
}