forked from tvjsx/trading-vue-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.26 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
{
"name": "trading-vue-js",
"version": "1.0.2",
"description": "Hackable charting lib for traders",
"main": "./dist/trading-vue.js",
"scripts": {
"test": "webpack serve --config webpack/test.config.js --mode development --progress --hot",
"auto-test": "ava",
"eslint": "./node_modules/.bin/eslint --ext .js,.vue src",
"dev": "webpack serve --config webpack/dev.config.js --mode development --progress --hot",
"ww": "webpack serve --config webpack/dev.config.js --mode production --progress --hot",
"build": "webpack --config webpack/build.config.js --mode production --progress",
"cdn": "webpack serve --config webpack/cdn.config.js --mode development --progress --hot"
},
"ava": {
"babel": {
"compileAsTests": [
"test/auto_tests/**/*",
"src/**/*"
]
},
"files": [
"test/auto_tests/**/*"
]
},
"author": "C451",
"license": "MIT",
"files": [
"dist/*",
"src/*"
],
"keywords": [
"trading",
"vue",
"charts",
"crypto",
"visualization",
"reactive",
"algo-trading",
"finviz",
"trading-systems"
],
"homepage": "https://github.com/C451/trading-vue-js#readme",
"repository": "github:C451/trading-vue-js",
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/core": "^7.13.10",
"@babel/plugin-transform-parameters": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"ava": "^3.15.0",
"babel-loader": "^8.2.2",
"css-loader": "^3.6.0",
"eslint": "^7.21.0",
"eslint-config-eslint": "^7.0.0",
"eslint-plugin-vue": "^7.7.0",
"html-webpack-plugin": "^5.3.1",
"null-loader": "^4.0.1",
"raw-loader": "^4.0.2",
"request": "^2.88.2",
"terser-webpack-plugin": "^5.1.1",
"tulind": "^0.8.18",
"vue-codemirror": "^4.0.6",
"vue-loader": "^15.9.6",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.24.4",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"worker-loader": "^3.0.8"
},
"dependencies": {
"@babel/runtime": "^7.13.10",
"arrayslicer": "^1.2.3",
"hammerjs": "^2.0.8",
"hamsterjs": "^1.1.3",
"lz-string": "^1.4.4",
"moment": "^2.29.1",
"vue": "^2.6.12"
}
}