-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
85 lines (85 loc) · 1.97 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
{
"name": "day2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"deploy": "sh deploy.sh"
},
"dependencies": {
"@wildpeaks/three-webpack-plugin": "^2.0.0",
"axios": "^0.18.0",
"axios-cache-adapter": "^2.0.0",
"babel-plugin-component": "^1.1.1",
"buefy": "^0.7.1",
"bulma": "^0.7.1",
"bulmaswatch": "^0.7.2",
"chart.js": "^2.7.3",
"chartjs-plugin-annotation": "^0.5.7",
"element-ui": "^2.4.11",
"howler": "^2.0.15",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"moment-duration-format": "^2.2.2",
"newton-raphson-method": "^1.0.2",
"nosleep.js": "^0.9.0",
"three": "^0.105.1",
"three-orbit-controls": "^82.1.0",
"vue": "^2.5.17",
"vue-analytics": "^5.17.0",
"vue-chartjs": "^3.4.0",
"vue-circle-slider": "^1.0.2",
"vue-router": "^3.0.2",
"vue-slider-component": "^3.0.31"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.2.0",
"@vue/cli-plugin-eslint": "^3.2.0",
"@vue/cli-service": "^3.2.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0-0",
"node-sass": "^4.11.0",
"pug": "^2.0.3",
"pug-plain-loader": "^1.0.0",
"sass": "^1.15.2",
"sass-loader": "^7.1.0",
"vue-template-compiler": "^2.5.17"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"generator-star-spacing": "off",
"comma-style": [
2,
"first"
],
"space-in-parens": 0,
"space-before-blocks": 0,
"padded-blocks": 0,
"space-before-function-paren": 0
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}