-
Notifications
You must be signed in to change notification settings - Fork 247
/
package.json
80 lines (80 loc) · 2.39 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
{
"name": "aggr",
"version": "3.6.2",
"private": true,
"type": "module",
"scripts": {
"cors": "node scripts/cors-server.mjs",
"svg2font": "node scripts/svg2font.js",
"serve": "vite --host",
"prod": "vue-tsc --noEmit && vite build --dest ./temp && rimraf ./dist && mv ./temp ./dist",
"build": "vite build",
"lint": "eslint",
"lint:fix": "eslint --fix",
"clean": "rm -rf node_modules && npm cache clean -f",
"serve:dist": "node ./dist-server/index.mjs",
"deploy": "node scripts/gh-pages-deploy.mjs"
},
"dependencies": {
"@mdi/font": "^5.6.55",
"@vue/eslint-config-typescript": "^11.0.3",
"axios": "^1.4.0",
"color-fns": "^0.1.1",
"eslint-plugin-prettier": "^5.0.0",
"eventemitter3": "^4.0.7",
"idb": "^6.0.0",
"lightweight-charts": "git+https://github.com/Tucsky/lightweight-charts.git#3ac7ebd731452fb0d9967905e10128b20409b7d7",
"lodash.merge": "^4.6.2",
"marked": "^9.1.2",
"monaco-editor": "0.41.0",
"pako": "^1.0.6",
"tunajs": "^1.0.13",
"vite": "^4.4.9",
"vite-plugin-comlink": "^3.0.2",
"vue": "^2.7.13",
"vue-class-component": "^7.2.6",
"vue-grid-layout": "^2.4.0",
"vue-property-decorator": "^8.4.2",
"vue-template-compiler": "^2.7.13",
"vue-tippy": "^4.8.0",
"vue-uuid": "^2.0.2",
"vuex": "^3.6.2"
},
"devDependencies": {
"@types/lodash.merge": "^4.6.8",
"@types/marked": "^6.0.0",
"@types/node": "20.2.0",
"@types/pako": "^2.0.0",
"@types/sharedworker": "0.0.29",
"@vitejs/plugin-vue2": "^2.2.0",
"@vue/cli-plugin-eslint": "^5.0.8",
"cors-anywhere": "^0.4.4",
"dexie": "^3.2.1",
"dexie-export-import": "^1.0.3",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier-vue": "^4.2.0",
"eslint-plugin-vue": "^9.17.0",
"prettier": "^3.0.2",
"prettier-eslint": "^15.0.1",
"rimraf": "^5.0.1",
"rollup-plugin-visualizer": "^5.9.2",
"sass": "^1.26.11",
"svgtofont": "^3.24.0",
"tslib": "^2.4.0",
"ttf2woff": "^3.0.0",
"typescript": "~3.9.3",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-monaco-editor": "^1.1.0",
"vite-plugin-pwa": "^0.16.0",
"vite-plugin-qrcode": "^0.2.2",
"vite-plugin-vue2-svg": "^0.4.0",
"vite-svg-loader": "^4.0.0",
"vue-prettier": "^0.2.0",
"vue-tsc": "^1.6.5"
},
"volta": {
"node": "20.2.0",
"npm": "9.7.1"
}
}