forked from carbon-design-system/carbon-components-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.39 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
{
"name": "carbon-components-vue",
"description": "[Experimental] Vue implementation of the Carbon Design System",
"version": "0.0.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/carbon-design-system/carbon-components-vue.git"
},
"bugs": {
"url": "https://github.com/carbon-design-system/carbon-components-vue/issues/new"
},
"sideEffects": true,
"scripts": {
"ci-check": "yarn format:diff",
"format": "prettier --write \"**/*.{scss,css,js,md,vue}\"",
"format:diff": "prettier --list-different \"**/*.{scss,css,js,md,vue}\"",
"lint:es": "eslint --ext .js,.vue src",
"lint:css": "stylelint 'src/**/*.vue'",
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook-build": "build-storybook"
},
"peerDependencies": {},
"dependencies": {
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"carbon-components": "^9.48.1",
"carbon-icons": "^7.0.7"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@storybook/addon-actions": "^3.4.11",
"@storybook/addon-knobs": "^3.4.11",
"@storybook/addon-notes": "^3.4.11",
"@storybook/addon-options": "^3.4.8",
"@storybook/addon-storysource": "^3.4.11",
"@storybook/vue": "^3.4.11",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"eslint": "^5.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-html": "^4.0.6",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.1.2",
"lint-staged": "^7.3.0",
"node-sass": "^4.9.4",
"prettier": "^1.14.3",
"sass-loader": "^7.1.0",
"stylelint": "^9.6.0",
"stylelint-config-property-sort-order-smacss": "^4.0.1",
"stylelint-config-sass-guidelines": "^5.2.0",
"vue": "^2.5.16",
"vue-highlightjs": "^1.3.3",
"vue-loader": "^14.2.1",
"vue-template-compiler": "^2.5.16"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{scss,css,js,md,vue}": [
"yarn format",
"git add"
]
},
"prettier": {
"printWidth": 80,
"singleQuote": true,
"trailingComma": "es5"
}
}