-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.34 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
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "v3.pirhoo.com",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"lint": "vue-cli-service lint",
"build": "vue-cli-service build",
"deploy": "push-dir --dir=dist --branch=gh-pages --overwrite-local",
"predeploy": "yarn run build",
"csv": "gulp csv"
},
"dependencies": {
"@fortawesome/fontawesome": "^1.1.4",
"@fortawesome/fontawesome-svg-core": "^6.7.1",
"@fortawesome/free-brands-svg-icons": "^6.7.1",
"@fortawesome/free-regular-svg-icons": "^6.7.1",
"@fortawesome/free-solid-svg-icons": "^6.7.1",
"@fortawesome/vue-fontawesome": "^2.0.10",
"axios": "^0.21.1",
"bootstrap": "^5.0.1",
"chroma-js": "^2.1.1",
"d3": "^5.15.0",
"d3-tip": "^0.9.1",
"granim": "^2.0.0",
"lodash": "^4.17.21",
"vue": "^2.6.12",
"vue-lazyload": "^1.3.3",
"vue-masonry-css": "^1.0.3",
"vue-perfect-scrollbar": "^0.2.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.6.0",
"@vue/cli-plugin-eslint": "^3.6.0",
"@vue/cli-service": "^3.6.0",
"@vue/eslint-config-airbnb": "^4.0.0",
"csv-stringify": "^5.6.2",
"dart-sass-variable-loader": "^0.2.4",
"gh-pages": "^2.2.0",
"gulp": "^4.0.2",
"gulp-convert": "^0.2.0",
"gulp-filter": "^6.0.0",
"gulp-image-resize": "^0.13.1",
"gulp-json-editor": "^2.5.5",
"gulp-load-plugins": "^2.0.6",
"image-size": "^0.7.3",
"lint-staged": "^8.1.5",
"node-vibrant": "^3.2.1-alpha.1",
"path": "^0.12.7",
"push-dir": "^0.4.1",
"sass": "^1.49.0",
"sass-loader": "^7.1.0",
"simple-git": "^2.39.0",
"slug": "^1.1.0",
"vue-template-compiler": "^2.6.12",
"webshot": "^0.18.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/airbnb"
],
"rules": {
"import/no-webpack-loader-syntax": false,
"max-len": "off"
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}