-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "now-playing",
"description": "A visual widget showing the currently playing track from Libre.fm",
"author": "Alexandre Breteau <contact@seldszar.fr>",
"license": "MIT",
"private": true,
"homepage": "https://github.com/seldszar/now-playing#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/seldszar/now-playing.git"
},
"bugs": {
"url": "https://github.com/seldszar/now-playing/issues"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"foundation-sites": "^6.4.3",
"jsonp": "^0.2.1",
"lodash": "^4.17.5",
"popmotion": "^8.3.3",
"vue": "^2.5.17",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.0",
"@vue/cli-plugin-eslint": "^3.0.0",
"@vue/cli-service": "^3.0.0",
"@vue/eslint-config-prettier": "^3.0.0",
"babel-plugin-lodash": "^3.3.4",
"lint-staged": "^7.2.0",
"lodash-webpack-plugin": "^0.11.5",
"node-sass": "^4.9.0",
"sass-loader": "^6.0.7",
"vue-template-compiler": "^2.5.17"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint"
],
"*.vue": [
"vue-cli-service lint"
]
}
}