-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 1.55 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
{
"name": "vue.charts.css",
"version": "2.0.1",
"description": "Vue JS wrapper for Charts CSS",
"main": "dist/vue-charts-css.min.js",
"author": "Matthew Spence",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/Vue-Charts-CSS/vue.charts.css.git"
},
"keywords": [
"css",
"html",
"css-framework",
"charts",
"chart",
"scss",
"vue",
"vue 3",
"vuejs",
"vue.js",
"vue js",
"sass",
"vue charts",
"vue charts css",
"vue.charts.css",
"ui-component"
],
"scripts": {
"watch": "node_modules/.bin/webpack --config=webpack.config.js --progress --watch --color --mode=development",
"production": "node_modules/.bin/webpack --config=webpack.config.js --progress --color --mode=production"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"babel-loader": "^8.2.3",
"css-loader": "^6.3.0",
"mini-css-extract-plugin": "^1.3.9",
"sass": "^1.49.0",
"sass-loader": "^10.2.1",
"style-loader": "^2.0.0",
"vue-loader": "^16.0.0",
"vue-style-loader": "^4.1.3",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"charts.css": "^0.9.0",
"vue": "^3.1.0"
},
"sideEffects": false,
"cssnano": {
"preset": [
"default",
{
"discardComments": {
"removeAll": true
}
}
]
},
"browserslist": [
">1%",
"not dead",
"not ie >= 0",
"not op_mini all",
"last 2 versions"
],
"engines": {
"yarn": "YARN NO LONGER USED - use npm instead."
}
}