-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.25 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
{
"name": "TA-Chart",
"version": "0.3.0",
"description": "Web app TA Chart gives the ability to explore technical analysis charts on data from varios data providers",
"main": "index.js",
"scripts": {
"dev": "webpack serve --config webpack.dev.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"transpile": "babel ./src --out-dir ./js --source-maps --ignore test.js",
"transpile:all": "babel ./src --out-dir ./js --source-maps",
"lint": "eslint -c .eslintrc-build.json ./src > lint.txt",
"css:min": "node ut/css-min.js",
"build:prod": "webpack --color --progress --config webpack.prod.js",
"stats": "npm run stats:json && npm run stats:report",
"stats:json": "webpack --profile --json --config webpack.dll-jsx.js > stats.json",
"stats:report": "webpack-bundle-analyzer stats.json --no-open --mode static",
"stats:dll": "npm run stats:dll:json && npm run stats:dll:report",
"stats:dll:json": "webpack --profile --json --config webpack.dll.js > stats-dll.json",
"stats:dll:report": "webpack-bundle-analyzer stats-dll.json --no-open --mode static"
},
"keywords": [
"webapp",
"charts",
"technical-analysis",
"stock-market",
"altcoins"
],
"author": "Yevhenii Molodyi",
"license": "BSD-3-Clause",
"dependencies": {
"@babel/runtime": "^7.26.0",
"d3-quadtree": "^3.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-transform-react-jsx": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"babel-loader": "^9.2.1",
"bundle-stats-webpack-plugin": "^4.16.0",
"clean-css": "^5.3.3",
"eslint": "^7.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"react-refresh": "^0.14.2",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.96.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"jest": {
"roots": [
"<rootDir>/js/components/zhn-charts/d3Array",
"<rootDir>/js/components/zhn-charts/d3Collection",
"<rootDir>/js/components/zhn-charts/d3Color",
"<rootDir>/js/components/zhn-charts/d3Format",
"<rootDir>/js/components/zhn-charts/d3Interpolate",
"<rootDir>/js/components/zhn-charts/d3Scale",
"<rootDir>/js/components/zhn-charts/d3Shape",
"<rootDir>/js/components/zhn-charts/d3Time",
"<rootDir>/js/utils"
],
"transformIgnorePatterns": [
"<rootDir>/js/components/zhn-charts/d3Array",
"<rootDir>/js/components/zhn-charts/d3Collection",
"<rootDir>/js/components/zhn-charts/d3Color",
"<rootDir>/js/components/zhn-charts/d3Format",
"<rootDir>/js/components/zhn-charts/d3Interpolate",
"<rootDir>/js/components/zhn-charts/d3Scale",
"<rootDir>/js/components/zhn-charts/d3Shape",
"<rootDir>/js/components/zhn-charts/d3Time",
"<rootDir>/js/utils"
]
}
}