-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
147 lines (147 loc) · 5.15 KB
/
package.json
File metadata and controls
147 lines (147 loc) · 5.15 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
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
145
146
147
{
"name": "scichartdemo",
"version": "1.0.0",
"description": "",
"private": true,
"engines": {
"npm": ">=10.9.2",
"node": ">=22.13.0"
},
"scripts": {
"generateExamplePaths": "node scripts/generateExamplePaths.js",
"updateExampleInfos": "ts-node -P tsconfig.node.json scripts/updateExampleInfos.ts",
"updateExampleInfosJS": "node scripts/updateExampleInfos.js",
"dev": "webpack-dev-server --config webpack.client.no_server.config.ts",
"dev-bigger": "NODE_OPTIONS='--max-old-space-size=4096' webpack-dev-server --config webpack.client.no_server.config.ts",
"build": "rimraf ./build && npm run buildVanillaDemo && npm run buildImages && npm run buildServer && npm run buildClient",
"start": "node ./build/server.js",
"buildServer": "webpack --config webpack.server.config.js",
"buildClient": "webpack --config webpack.client.config.js",
"buildImages": "webpack --config webpack.image.config.js",
"buildClient:watch": "webpack --config webpack.client.config.js --watch",
"buildVanillaDemo": "npm run compileVanillaExamples",
"buildSciChartExampleDependencies": "webpack --config webpack.deps.config.ts --mode production",
"compileVanillaExamples": "tsc --build tsconfig.vanilla.json",
"recompileVanillaExamples": "tsc --build --force tsconfig.vanilla.json && pretty-quick --pattern **/(vanilla|drawExample).js",
"startServer": "webpack --config webpack.server.dev.config.js",
"startClient": "webpack-dev-server --config webpack.client.dev.config.js",
"startClientTsc": "webpack --config webpack.client.dev.config.js",
"prettier": "prettier src/**/*.{js,ts,tsx} --write",
"testUnit": "mocha --require ts-node/register \"testUnit/**/*.test.ts\"",
"generateSitemap": "node build/generateSitemapScript.js",
"prepare": "cd .. && husky install",
"pretty-quick": "pretty-quick --staged",
"updateMarkdown": "node updateMarkdown.js",
"enforceTrailingSlashes": "node scripts/enforce-trailing-slashes.js",
"linkcheck": "node scripts/linkcheck.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@angular/animations": "^18.2.8",
"@angular/common": "^18.2.8",
"@angular/core": "^18.2.8",
"@angular/forms": "^18.2.8",
"@angular/material": "^18.2.8",
"@babel/runtime": "^7.28.2",
"@emotion/react": "^11.13.3",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.5",
"@mui/lab": "^7.0.1-beta.19",
"@mui/material": "^7.3.5",
"@stackblitz/sdk": "^1.11.0",
"@types/morgan": "^1.9.9",
"@types/react": "^19.1.9",
"chalk": "^4.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"country-flag-icons": "^1.5.7",
"crossfilter2": "^1.5.4",
"d3-hierarchy": "^3.1.2",
"date-fns": "^4.1.0",
"express": "^4.17.1",
"follow-redirects": "^1.15.9",
"lz-string": "^1.5.0",
"morgan": "^1.10.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-draggable": "^4.5.0",
"react-fast-compare": "^3.2.2",
"react-helmet": "^6.1.0",
"react-markdown": "^9.0.3",
"react-router": "^7.1.1",
"react-router-dom": "^7.1.1",
"react-syntax-highlighter": "^15.6.1",
"react-transition-group": "^4.4.5",
"rehype-raw": "^7.0.0",
"request": "^2.88.2",
"rxjs": "^7.5.6",
"scichart": "5.2.28",
"scichart-financial-tools": "5.2.28",
"scichart-react": "1.0.0",
"socket.io": "^4.5.2",
"socket.io-client": "^4.7.5",
"websocket-ts": "^1.1.1",
"winston": "^3.17.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/chai": "^4.2.12",
"@types/compression": "^1.7.0",
"@types/d3-hierarchy": "^3.1.7",
"@types/express": "^4.17.7",
"@types/follow-redirects": "^1.14.4",
"@types/node": "^22.7.6",
"@types/nodemon": "^1.19.6",
"@types/prismjs": "^1.16.1",
"@types/react-dom": "^19.1.7",
"@types/react-helmet": "^6.1.6",
"@types/react-lazy-load-image-component": "^1.5.2",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/request": "^2.48.8",
"ajv": "^8.17.1",
"autoprefixer": "^10.2.4",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"css-modules-typescript-loader": "^4.0.1",
"husky": "^8.0.0",
"ignore-loader": "^0.1.2",
"mini-css-extract-plugin": "^2.7.2",
"nodemon": "^2.0.20",
"nodemon-webpack-plugin": "^4.8.1",
"postcss-loader": "^7.0.2",
"prettier": "^2.3.1",
"pretty-quick": "^3.1.1",
"rimraf": "^3.0.2",
"sass": "^1.90.0",
"sass-loader": "^16.0.5",
"sitemap": "^6.3.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tslint": "^6.1.2",
"typescript": "^5.6.3",
"url-loader": "^4.1.1",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0"
},
"overrides": {
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"browserslist": [
"defaults",
"not ie < 11",
"last 2 versions",
"> 1%",
"iOS 7",
"last 3 iOS versions"
]
}