-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.82 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
{
"name": "@viper-charts/viper-charts",
"version": "1.0.22",
"description": "A free and open-source cross market charting platform",
"main": "dist/viper.bundle.js",
"keywords": [
"viper",
"charts",
"crypto",
"bitcoin",
"charting platform"
],
"scripts": {
"start": "webpack serve --config webpack.dev.js",
"build": "echo 'Use npm run build-windows or npm run build-unix'",
"build-windows": "rm -rf dist/* && webpack --config webpack.prod.js && mv dist/viper.bundle.worker.js .worker-releases/viper.bundle.%npm_package_version%.worker.js",
"build-unix": "rm -rf dist/* && webpack --config webpack.prod.js && mv dist/viper.bundle.worker.js .worker-releases/viper.bundle.$npm_package_version.worker.js",
"build-static": "rm -rf dist/* && webpack --config webpack.static.js"
},
"author": "Tryston Perry",
"bugs": {
"url": "https://github.com/ViperCharts/viper-charts-js/issues",
"email": "[email protected]"
},
"license": "CC0",
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/node": "^7.16.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.3",
"css-loader": "^6.6.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "5.5.0",
"image-webpack-loader": "^8.1.0",
"node-sass": "^7.0.1",
"regenerator-runtime": "^0.13.9",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"webpack": "5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "4.7.4",
"webpack-merge": "^5.8.0",
"worker-loader": "^3.0.8"
},
"dependencies": {
"decimal.js": "^10.3.1",
"dexie": "^3.2.2",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"files": [
"/dist",
"package.json"
]
}