-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
71 lines (71 loc) · 2.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "component-library",
"version": "1.4.0",
"description": "Modular, reusable components and styles for use in web applications.",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib --name component-library src/index.js",
"lint": "vue-cli-service lint --fix",
"build-storybook": "build-storybook",
"build:all": "npm run build && npm run build:app && npm run build-storybook",
"build:app": "vue-cli-service build --dest dist-app",
"now-build": "vue-cli-service build",
"storybook": "start-storybook -p 6006",
"test": "vue-cli-service test:unit",
"prerelease": "npm run lint --fix && npm run build:all",
"release": "standard-version"
},
"main": "dist/component-library.common.js",
"unpkg": "dist/component-library.umd.min.js",
"cdn": "dist/component-library.umd.min.js",
"browser": "dist/component-library.umd.min.js",
"files": [
"src/components",
"src/styles",
"dist",
"LICENSE",
"README.md"
],
"dependencies": {
"vue": "^2.6.12",
"vuetify": "^2.4.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@fortawesome/fontawesome-free": "^5.15.1",
"@storybook/addon-actions": "^6.1.11",
"@storybook/addon-docs": "^6.1.11",
"@storybook/addon-links": "^6.1.11",
"@storybook/addons": "^6.1.11",
"@storybook/vue": "^6.1.11",
"@vue/cli-plugin-babel": "^4.5.9",
"@vue/cli-plugin-eslint": "^4.4.6",
"@vue/cli-plugin-unit-jest": "^4.5.9",
"@vue/cli-service": "^4.5.9",
"@vue/test-utils": "^1.1.2",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-preset-vue": "^2.0.2",
"css-loader": "^5.0.1",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-vue": "^7.4.0",
"node-sass": "^5.0.0",
"prettier": "^2.2.1",
"sass": "^1.30.0",
"sass-loader": "^10.1.0",
"standard-version": "^9.0.0",
"style-loader": "^2.0.0",
"stylus": "^0.54.8",
"stylus-loader": "^4.3.1",
"vue-cli-plugin-vuetify": "^2.0.8",
"vue-template-compiler": "^2.6.12",
"vuetify-loader": "^1.6.0"
}
}