-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.1 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.1 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "commit-graph",
"version": "2.3.12",
"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/liuliu-dev/CommitGraph"
},
"license": "MIT",
"keywords": [
"commit",
"graph",
"react"
],
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"compile": "tsc --noEmit",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css}\"",
"storybook": "storybook dev",
"build-storybook": "storybook build",
"test": "jest --testPathIgnorePatterns=\"computePosition\\.test\\.ts\" --passWithNoTests",
"yalc:publish": "npm run build && yalc publish",
"yalc:push": "npm run build && yalc push",
"ci": "npm-run-all lint:fix lint test build",
"deploy-storybook": "gh-pages -d storybook-static"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"@testing-library/jest-dom"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"moduleNameMapper": {
"\\.(css|less|scss)$": "identity-obj-proxy"
}
},
"dependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"react-icons": "^5.6.0",
"react-infinite-scroller": "^1.2.6",
"react-tooltip": "^5.30.0",
"reactjs-popup": "^2.0.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "12.3.0",
"@storybook/addon-webpack5-compiler-swc": "^4.0.3",
"@storybook/react": "^10",
"@storybook/react-webpack5": "^10",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.14",
"@types/react-infinite-scroller": "^1.2.5",
"eslint": "^10",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"gh-pages": "^6.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"rollup": "^4.60.0",
"rollup-plugin-dts": "^6.4.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^10",
"ts-jest": "^29.4.6",
"typescript": "^5.4.2",
"typescript-eslint": "^8.57.2",
"yalc": "^1.0.0-pre.53"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"resolutions": {
"serialize-javascript": "^7.0.3"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"packageManager": "yarn@4.13.0"
}