-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.86 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
{
"name": "spotify-magician",
"description": "A spotify playlist editor",
"version": "0.23.3",
"author": "Eric Lambrecht <[email protected]>",
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --hot --config webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules --optimize-minimize --config webpack.prod.js",
"now-build": "npm run build",
"commit": "git-cz",
"lint": "eslint --ext .js,.vue src",
"test": "jest",
"release": "standard-version -a --message \"chore(release): :bookmark: %s\"",
"deploy:dev": "now --token $NOW_TOKEN --confirm",
"deploy:prod": "now --token $NOW_TOKEN --target production"
},
"repository": {
"type": "git",
"url": "https://github.com/EricLambrecht/spotify-magician.git"
},
"dependencies": {
"@sentry/browser": "^5.6.3",
"@sentry/integrations": "^5.7.1",
"html-webpack-plugin": "^3.2.0",
"laue": "^0.2.1",
"lodash": "^4.17.21",
"moment": "^2.24.0",
"moment-duration-format": "^2.3.2",
"portal-vue": "^2.1.6",
"spotify-web-api-js": "^1.2.0",
"uuid": "^3.3.3",
"vue": "^2.6.11",
"vue-awesome": "^3.5.4",
"vue-resize-directive": "^1.2.0",
"vue-router": "^3.1.3",
"vuetrend": "^0.3.4",
"vuex": "^3.1.2"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"commitizen": "^4.0.3",
"cross-env": "^6.0.3",
"css-loader": "^3.4.0",
"emoji-cz": "^0.3.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.19.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^5.2.3",
"file-loader": "^4.3.0",
"flush-promises": "^1.0.2",
"html-loader": "^0.5.5",
"jest": "^24.9.0",
"markdown-loader": "^5.1.0",
"node-sass": "^4.13.1",
"now": "^16.6.2",
"prettier": "1.19.1",
"replace": "^1.1.1",
"sass-loader": "^7.3.1",
"standard-version": "^7.0.1",
"url-loader": "^2.3.0",
"vue-jest": "^3.0.5",
"vue-loader": "^15.7.2",
"vue-template-compiler": "^2.6.11",
"vuex-mock-store": "0.0.7",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.2",
"webpack-merge": "^4.2.2"
},
"config": {
"commitizen": {
"path": "node_modules/emoji-cz"
}
},
"standard-version": {
"scripts": {
"postbump": "node scripts/writeVersionFile.js",
"postchangelog": "replace \"🐛 \" \"\" CHANGELOG.md&&replace \"✨ \" \"\" CHANGELOG.md",
"precommit": "git add src/version.json"
},
"preMajor": "true"
}
}