-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
86 lines (86 loc) · 2.71 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
82
83
84
85
86
{
"name": "musedash.moe",
"version": "0.1.0",
"private": true,
"type": "module",
"license": "MIT",
"scripts": {
"serve": "NODE_OPTIONS=--openssl-legacy-provider vue-cli-service serve",
"build-html": "NODE_OPTIONS=--openssl-legacy-provider vue-cli-service build",
"build": "npm run build:api && npm run build:vue",
"build:vue": "NODE_OPTIONS=--openssl-legacy-provider node build",
"build:dev": "export development=true; node build:vue; node index",
"lint": "vue-cli-service lint",
"build:api": "npx tsc -b",
"dev": "npx tsc -b -w",
"api": "node api",
"moe": "node index"
},
"dependencies": {
"@koa/router": "^10.1.1",
"bulma": "^0.9.4",
"chart.js": "^4.2.0",
"chartjs-adapter-moment": "^1.0.1",
"js-cookie": "^3.0.1",
"koa": "^2.14.1",
"koa-body": "^4.2.0",
"koa-mount": "^4.0.0",
"koa-static": "^5.0.0",
"lru-cache": "^6.0.0",
"moment": "^2.29.4",
"rave-level": "^1.0.0",
"register-service-worker": "^1.6.2",
"undici": "^5.23.0",
"vue": "^2.6.10",
"vue-router": "^3.0.3",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@types/adm-zip": "^0.5.2",
"@types/encoding-down": "^5.0.0",
"@types/koa": "^2.13.5",
"@types/koa__router": "^8.0.11",
"@types/lru-cache": "^5.1.0",
"@vue/cli-plugin-babel": "^4.0.5",
"@vue/cli-plugin-eslint": "^4.0.5",
"@vue/cli-plugin-pwa": "^4.0.5",
"@vue/cli-service": "^4.0.5",
"@vue/eslint-config-standard": "^4.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-component": "^1.1.1",
"chalk": "^4.1.0",
"copy-webpack-plugin": "^6.4.1",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^7.18.0",
"html-minifier-loader": "^1.4.1",
"mini-css-extract-plugin": "^1.6.2",
"null-loader": "^4.0.1",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"ora": "^6.0.1",
"postcss-safe-parser": "^4.0.1",
"raw-loader": "^4.0.2",
"rimraf": "^3.0.0",
"sass": "^1.58.3",
"sass-loader": "^10.4.1",
"size-plugin": "^3.0.0",
"terser-webpack-plugin": "^4.2.3",
"typescript": "^4.7.3",
"vue-gtag": "^1.16.1",
"vue-server-renderer": "^2.6.12",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.38.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^1.7.2",
"workbox-core": "^6.3.0",
"workbox-expiration": "^6.3.0",
"workbox-precaching": "^6.3.0",
"workbox-routing": "^6.3.0",
"workbox-strategies": "^6.3.0",
"workbox-webpack-plugin": "^6.3.0"
}
}