-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.23 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.23 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "dossierdata-component-library",
"version": "0.0.1",
"description": "A Vue component library built by Homeday's frontend team.",
"main": "main.js",
"repository": {
"type": "git",
"url": "https://github.com/dossierdata/component.library.git"
},
"keywords": [
"vue",
"javascript",
"component library",
"storybook",
"dossierdata-component-library",
"services"
],
"bugs": {
"url": "https://github.com/dossierdata/component.library/issues"
},
"homepage": "https://component-library.ddat.dev",
"license": "MIT",
"scripts": {
"lint": "vue-cli-service lint",
"lint:ci": "vue-cli-service lint --no-fix",
"build:lib": "vue-cli-service build --target lib --name dossierdata-component-library ./main.js",
"build:storybook": "build-storybook",
"serve:storybook": "start-storybook -p 6006",
"test:unit": "vue-cli-service test:unit",
"test:unit:snapshot": "vue-cli-service test:unit -u",
"test:unit:watch": "npm run test:unit -- --watch",
"test:unit:ci": "npm run test:unit -- --ci --coverage",
"test:unit:coverage": "npm run test:unit -- --coverage && open coverage/lcov-report/index.html",
"test:percy": "if [ $PERCY_TOKEN ]; then percy-storybook; else echo 'Skipping test: PERCY_TOKEN is not defined'; fi",
"coverage": "cat ./coverage/lcov.info | coveralls -v",
"import-assets": "node src/assets-importer",
"new": "hygen new"
},
"dependencies": {
"ant-design-vue": "^1.7.2",
"body-scroll-lock": "2.6.4",
"lodash": "4.17.20",
"natural-scroll": "0.2.2",
"sass": "^1.29.0",
"storybook": "^6.1.9",
"vue": "^2.6.12",
"vue-flickity": "1.2.1",
"vue-inline-svg": "1.3.1",
"vue-material-design-icons": "^4.11.0"
},
"devDependencies": {
"@percy/storybook": "3.3.1",
"@storybook/addon-actions": "6.0.12",
"@storybook/addon-console": "1.2.1",
"@storybook/addon-essentials": "6.0.21",
"@storybook/addon-knobs": "6.0.21",
"@storybook/addon-links": "6.0.21",
"@storybook/addon-viewport": "6.0.22",
"@storybook/theming": "6.0.22",
"@storybook/vue": "6.0.26",
"@vue/cli-plugin-babel": "4.1.2",
"@vue/cli-plugin-eslint": "4.5.6",
"@vue/cli-plugin-unit-jest": "4.5.6",
"@vue/cli-service": "4.5.6",
"@vue/eslint-config-airbnb": "4.0.1",
"@vue/test-utils": "1.0.0-beta.33",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.1.0",
"core-js": "3.6.4",
"coveralls": "^3.0.7",
"deepmerge": "^4.2.2",
"dotenv": "^8.2.0",
"eslint": "^6.5.1",
"eslint-plugin-vue": "5.2.3",
"husky": "4.3.0",
"hygen": "^6.0.4",
"lint-staged": "9.5.0",
"node-fetch": "^2.6.0",
"node-sass": "^4.14.1",
"raw-loader": "3.1.0",
"react-is": "^16.13.1",
"sass-loader": "^8.0.2",
"style-loader": "^2.0.0",
"vue-code-highlight": "^0.7.2",
"vue-template-compiler": "2.6.12"
},
"files": [
"src/*",
"*.json",
"*.js"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test:unit"
}
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}