-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.28 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "bento-charts",
"version": "2.12.0",
"description": "Charts library for Bento-platform",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npx tsc && npm run copy-files",
"copy-files": "cp ./src/styles.css ./dist/",
"prepublishOnly": "npm run build",
"lint": "npx eslint 'src/**/*.{js,ts,tsx}'",
"lint:fix": "npx eslint 'src/**/*.{js,ts,tsx}' --fix",
"format": "npx prettier --write 'src/**/*.{js,ts,tsx}'",
"buildpack": "rm ./packs/*.tgz && tsc && npm pack --pack-destination ./packs",
"test": "npx webpack-dev-server",
"prepare": "husky"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "chore",
"release": "patch"
},
{
"type": "refact",
"release": "minor"
},
{
"type": "refactor",
"release": "minor"
},
{
"type": "style",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/bento-platform/bento_charts.git"
},
"keywords": [
"Bento",
"Charts"
],
"author": "Sanjeev Lakhwani",
"license": "MIT",
"bugs": {
"url": "https://github.com/bento-platform/bento_charts/issues"
},
"homepage": "https://github.com/bento-platform/bento_charts#readme",
"peerDependencies": {
"leaflet": "^1.9.4",
"react": ">=16.0.0",
"react-dom": ">=14.0.0",
"react-leaflet": "^3.2.5 || ^4.2.1",
"recharts": "^2.4.3"
},
"peerDependenciesMeta": {
"leaflet": {
"optional": true
},
"react-leafet": {
"optional": true
}
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.13.0",
"@semantic-release/git": "^10.0.1",
"@types/leaflet": "^1.9.12",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/react-leaflet": "^3.0.0",
"@types/recharts": "^1.8.25",
"@typescript-eslint/parser": "^8.11.0",
"@webpack-cli/serve": "^2.0.5",
"antd": "^5.20.6",
"css-loader": "^7.1.2",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"file-loader": "^6.2.0",
"geojson": "^0.5.0",
"globals": "^15.11.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"react-router-dom": "^6.26.2",
"semantic-release": "^24.1.3",
"style-loader": "^4.0.0",
"ts-loader": "^9.4.4",
"typescript": "~5.6.2",
"typescript-eslint": "^8.11.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 120
},
"dependencies": {
"d3-interpolate": "^3.0.1"
}
}