This repository has been archived by the owner on Oct 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
144 lines (144 loc) · 4.98 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "@pka420/react-stockcharts",
"version": "0.0.3",
"description": "Highly customizable stock charts with ReactJS and d3",
"main": "src/index.ts",
"module": "src/index.ts",
"author": "Piyush Khurana",
"homepage": "http://github.com/pka420/react-stockcharts",
"license": "MIT",
"scripts": {
"clean": "rm -rf ./build",
"watch": "webpack serve --config config/webpack.config.js --mode development",
"docs": "npm run build:docs && ncp docs/images/ build/images && ncp docs/data/ build/data",
"build:docs": "echo 'DOCS - BUILD' && webpack --config config/webpack.config.js --env docs --mode production",
"prebuild": "npm run clean",
"build": "npm run docs",
"babel:cjs:watch": "npm run babel:cjs -- -watch",
"babel:es:watch": "npm run babel:es -- -watch",
"babel:cjs": "BABEL_ENV=cjs babel src --out-dir build/cjs --source-maps && cp -R src/lib build/",
"babel:es": "BABEL_ENV=es babel src --out-dir build/es --source-maps && cp -R src/lib build/es/",
"release": "npm run clean && npm run babel:cjs && npm run babel:es && cp README.md build/ && node scripts/release.js",
"lint": "eslint --config config/eslint.config.mjs src --fix",
"upgrade:patch": "npm version patch",
"version": "node scripts/updateVersion.js && git add \"src/index.ts\"",
"postversion": "git push origin `git rev-parse --abbrev-ref HEAD` && git push origin `git describe`",
"npm:publish:next": "npm run release && cd build && npm publish --tag next",
"npm:publish:latest": "npm run release && cd build && npm publish --access public",
"sourcemap:visualize": "source-map-explorer build/dist/react-stockcharts.min.js build/dist/react-stockcharts.min.js.map",
"server": "cd build && python3 -m http.server 8090",
"copy:readme": "node -e \"require('fs').copyFileSync('README.md', 'build/README.md')\""
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/plugin-transform-class-properties": "^7.24.7",
"@babel/plugin-transform-flow-strip-types": "^7.25.2",
"@babel/plugin-transform-object-rest-spread": "^7.24.7",
"@babel/preset-env": "^7.25.4",
"@babel/preset-flow": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"autoprefixer-loader": "^3.2.0",
"babel-cli": "^6.26.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"es6-promise": "^4.2.8",
"file-loader": "^6.2.0",
"fs-extra": "^11.2.0",
"globals": "^15.9.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.0",
"json-loader": "^0.5.7",
"ncp": "^2.0.0",
"prismjs": "^1.29.0",
"progress-bar-webpack-plugin": "^2.1.0",
"react-bootstrap": "^2.10.4",
"remarkable-loader": "^0.2.1",
"sass": "^1.77.8",
"sass-loader": "^16.0.1",
"shelljs": "^0.8.5",
"shortid": "^2.2.16",
"style-loader": "^4.0.0",
"typescript": "^5.5.4",
"url-loader": "^4.1.1",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-config-utils": "^2.3.1",
"webpack-dev-server": "^5.0.4",
"whatwg-fetch": "^3.6.20"
},
"dependencies": {
"@eslint/compat": "^1.1.1",
"@types/d3-array": "^2.9.0",
"@types/d3-dsv": "^2.0.1",
"@types/d3-force": "^2.1.1",
"@types/d3-format": "^2.0.0",
"@types/d3-interpolate": "^2.0.0",
"@types/d3-path": "^2.0.0",
"@types/d3-scale": "^3.2.2",
"@types/d3-selection": "^2.0.0",
"@types/d3-shape": "^2.0.0",
"@types/d3-time-format": "^3.0.0",
"@types/lodash.flattendeep": "^4.4.6",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"d3-array": "^3.2.4",
"d3-collection": "^1.0.7",
"d3-dsv": "^3.0.1",
"d3-force": "^3.0.0",
"d3-format": "^3.1.0",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.1.0",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"debug": "^3.1.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.1",
"lodash.flattendeep": "^4.4.0",
"prop-types": "^15.6.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-virtualized-auto-sizer": "^1.0.24",
"remarkable": "^2.0.1",
"save-svg-as-png": "^1.4.5"
},
"keywords": [
"charts",
"charting",
"stockcharts",
"finance",
"financechart",
"react",
"ReactJS",
"d3",
"react-component",
"react-charts",
"chart-components",
"javascript-finance-chart",
"javascript-stockchart",
"data-visualization",
"data-viz",
"d3-finance-chart",
"d3-stockchart"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pka420/react-stockcharts.git"
},
"bugs": {
"url": "https://github.com/pka420/react-stockcharts/issues"
},
"maintainers": [
"Piyush Khurana <[email protected]>"
],
"directories": {
"doc": "docs"
}
}