-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
90 lines (90 loc) · 3.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
{
"name": "bruga-music",
"description": "A Vue.js personal project made for learning purposes",
"version": "1.0.0",
"author": "andres-brugarolas",
"license": "MIT",
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=development webpack serve --hot",
"start:local": "cross-env NODE_ENV=development LOCAL=true webpack serve --hot",
"start:static": "npm run build && http-server ./dist",
"build": "cross-env NODE_ENV=production webpack --progress",
"build:gh-pages": "cross-env NODE_ENV=production PUBLIC_PATH=bruga-music webpack --progress",
"build:analyzer": "cross-env NODE_ENV=production ANALYZER=true webpack --progress",
"icons:add": "node scripts/utils-icons/download-icon",
"icons:update-included": "node scripts/utils-icons/download-included-icons",
"lint": "npm run lint:eslint && npm run lint:stylelint",
"lint:eslint": "eslint babel.config.js webpack.config.js scripts/**/*.js src/**/*.{js,vue}",
"lint:eslint:fix": "eslint babel.config.js webpack.config.js scripts/**/*.js src/**/*.{js,vue} --fix",
"lint:stylelint": "stylelint \"src/**/*.{less,html,vue}\"",
"lint:stylelint:fix": "stylelint \"src/**/*.{less,html,vue}\" --fix",
"utils:outdated": "npm outdated",
"utils:updates": "ncu",
"utils:upgrades": "ncu -u"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.21.0",
"core-js": "^3.30.1",
"format-duration": "^3.0.2",
"nanoid": "^4.0.2",
"unfetch": "^5.0.0",
"vue": "^2.7.14",
"vue-async-computed": "^3.9.0",
"vue-router": "^3.6.5",
"vuex": "^3.6.2",
"yaku": "^1.0.1"
},
"engines": {
"node": ">=14.21.3"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "^7.21.3",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"ajv": "^8.12.0",
"babel-loader": "^9.1.2",
"babel-preset-minify": "^0.5.2",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"eslint": "^8.38.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-vue": "^9.11.0",
"file-loader": "^6.2.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.1",
"http-server": "^14.1.1",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"mini-css-extract-plugin": "^2.7.5",
"npm-check-updates": "^16.10.8",
"puppeteer": "^19.9.0",
"stylelint": "^15.5.0",
"stylelint-config-standard": "32.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.7.0",
"stylelint-declaration-strict-value": "^1.9.2",
"stylelint-group-selectors": "^1.0.9",
"stylelint-high-performance-animation": "^1.8.0",
"stylelint-no-nested-media": "^0.1.0",
"stylelint-selector-bem-pattern": "^2.1.1",
"stylelint-selector-no-empty": "^1.0.9",
"stylelint-selector-tag-no-without-class": "^2.0.5",
"svgo": "^3.0.2",
"vue-eslint-parser": "^9.1.1",
"vue-loader": "^15.10.1",
"vue-template-compiler": "^2.7.14",
"webfonts-loader": "8.0.1",
"webpack": "^5.79.0",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.3",
"webpack-pwa-manifest": "^4.0.0",
"workbox-webpack-plugin": "^6.5.4"
}
}