-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.56 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.56 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
{
"name": "scichart-react",
"version": "1.0.0",
"description": "React wrapper for SciChart JS",
"homepage": "https://www.scichart.com",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "npm run generateGlobalExportsModule && npm run buildJs && npm run updateJson && npm run copyToLib",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"storybook-docs": "storybook dev --docs",
"build-storybook-docs": "storybook build --docs",
"dev-docs-server": "ts-node --project tsconfig-server.json ./src/stories/server/index.ts",
"tsc": "tsc --watch",
"relink": "cd lib && npm link",
"buildJs": "rimraf lib && tsc --build tsconfig.json",
"generateGlobalExportsModule": "ts-node generate-exports-file.ts",
"buildBrowserBundle": "echo Not Implemented!",
"updateJson": "run-script-os",
"updateJson:nix": "cp package.json packageNpm.json && json -I -f packageNpm.json -e \"this.scripts={}\" -e \"this.devDependencies={}\"",
"updateJson:windows": "copy package.json packageNpm.json && json -I -f packageNpm.json -e \"this.scripts={}\" -e \"this.devDependencies={}\"",
"copyToLib": "copy-files-from-to --config copy-files-from-to.json",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier src/**/*.{js,ts,tsx} --write",
"pretty-quick": "pretty-quick --staged",
"publishPublic": "npm version patch && npm run build && cd lib && npm publish",
"publishBeta": "npm version prepatch --preid=beta && npm run build && cd lib && npm publish --tag beta",
"prepare": "husky install"
},
"author": "SciChart Ltd",
"license": "MIT",
"keywords": [
"Chart",
"Charts",
"Data",
"Graph",
"Graphs",
"Plot",
"Plotting",
"DataVisualization",
"WebGL",
"Realtime",
"Webassembly",
"Data",
"Dataviz",
"Dashboard",
"Visualization",
"3D",
"Fast",
"Fastest",
"Best",
"BigData",
"Performance",
"React"
],
"repository": {
"type": "git",
"url": "https://github.com/ABTSoftware/scichart-react"
},
"bugs": "https://github.com/ABTSoftware/scichart-react/issues",
"devDependencies": {
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-interactions": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/blocks": "^7.5.3",
"@storybook/react": "^7.5.3",
"@storybook/react-webpack5": "^7.5.3",
"@storybook/testing-library": "^0.2.2",
"@types/react": "^18.2.37",
"copy-files-from-to": "^3.9.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.57.0",
"eslint-config-react-app": "^7.0.1",
"husky": "^8.0.3",
"json": "^11.0.0",
"prettier": "^2.3.1",
"pretty-quick": "^3.1.1",
"raw-loader": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"run-script-os": "^1.1.6",
"scichart": "^5.0.211",
"storybook": "^7.5.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"scichart": ">=4.0.828"
}
}