-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.32 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
{
"name": "webpack-vue-builder",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test:style": "stylelint 'src/**/*.scss' --custom-syntax postcss-scss",
"test:js": "eslint src/**/*.vue src/**/*.js",
"fix:style": "stylelint 'src/**/*.scss' --custom-syntax postcss-scss --fix",
"fix:js": "eslint src/**/*.vue src/**/*.js --quiet --fix",
"prettier:js": "prettier --check \"src/**/*.js\"",
"prettier-fix:js": "prettier --write \"src/**/*.js\"",
"start": "webpack serve --env mode=development",
"build:dev": "webpack --env mode=development",
"build:prod": "webpack --env mode=production",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"type": "module",
"keywords": [],
"author": "Alexander Motorygin",
"license": "WTFPL",
"devDependencies": {
"@mapbox/stylelint-processor-arbitrary-tags": "^0.4.0",
"@storybook/addon-essentials": "^7.6.10",
"@storybook/addon-interactions": "^7.6.10",
"@storybook/addon-links": "^7.6.10",
"@storybook/blocks": "^7.6.10",
"@storybook/test": "^7.6.10",
"@storybook/vue3": "^7.6.10",
"@storybook/vue3-webpack5": "^7.6.10",
"@vue/compiler-sfc": "^3.4.15",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.9.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.21.1",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.7.7",
"node-sass": "^9.0.0",
"postcss": "^8.4.33",
"postcss-loader": "^8.0.0",
"prettier": "3.2.4",
"sass-loader": "^14.0.0",
"storybook": "^7.6.10",
"style-loader": "^3.3.4",
"stylelint": "^16.2.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-order": "^6.0.4",
"stylelint-selector-bem-pattern": "^3.0.1",
"stylelint-webpack-plugin": "^5.0.0",
"terser-webpack-plugin": "^5.3.10",
"vue-loader": "^17.3.1",
"vue-style-loader": "^4.1.3",
"vue-svg-loader": "^0.16.0",
"vue-template-compiler": "^2.7.15",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"vue": "^3.4.15"
},
"volta": {
"node": "18.19.0"
}
}