-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 3.22 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
91
92
93
94
95
96
97
98
99
{
"name": "@spacetab-io/vue-components",
"version": "0.2.24",
"private": false,
"scripts": {
"serve": "npm run generator:all && start-storybook -p 6006",
"build": "npm run generator:all && build-storybook -o dist",
"build-bundle": "vue-cli-service build --dest lib ./src/components/index.js",
"lint": "npm run lint:eslint && npm run lint:stylelint",
"lint:stylelint": "stylelint --cache \"src/**/*.{vue,scss}\" && exit 0",
"lint:eslint": "eslint --cache \"src/**/*.{js,ts,vue}\"",
"lint:fix": "npm run lint:eslint -- --fix && npm run lint:stylelint -- --fix",
"test:unit": "vue-cli-service test:unit",
"generator:all": "npm run generator:icons && npm run generator:themes",
"generator:icons": "node build/icon-generator.js",
"generator:themes": "node build/theme-generator.js",
"generator:component": "node build/component-generator.js"
},
"dependencies": {
"core-js": "^2.6.9",
"lodash": "^4.17.21",
"moment": "^2.29.2",
"popper.js": "^1.15.0",
"svg-sprite-loader": "^6.0.9",
"tingle.js": "^0.15.1",
"vue": "^2.6.10",
"vue-class-component": "^7.1.0",
"vue-property-decorator": "^8.2.2"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-knobs": "^5.1.9",
"@storybook/addon-links": "^5.1.9",
"@storybook/addon-notes": "^5.1.9",
"@storybook/addon-options": "^5.1.9",
"@storybook/addons": "^5.1.9",
"@storybook/theming": "^5.1.9",
"@storybook/vue": "^5.1.9",
"@types/chai": "^4.2.2",
"@types/lodash": "^4.14.144",
"@types/mocha": "^5.2.7",
"@types/node": "^10.12.12",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"@vue/cli-plugin-babel": "^3.10.0",
"@vue/cli-plugin-eslint": "^3.10.0",
"@vue/cli-plugin-typescript": "^3.10.0",
"@vue/cli-plugin-unit-mocha": "^3.10.0",
"@vue/cli-service": "^3.10.0",
"@vue/eslint-config-typescript": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.20",
"autoprefixer": "^9.4.7",
"babel-loader": "^8.0.6",
"babel-preset-vue": "^2.0.2",
"chai": "^4.2.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-compat": "^3.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-simple-import-sort": "^4.0.0",
"eslint-plugin-vue": "^5.2.3",
"html-loader": "^0.5.5",
"json-templater": "^1.2.0",
"lint-staged": "^9.2.1",
"markdown-loader": "^5.1.0",
"node-sass": "^4.12.0",
"sass-loader": "^7.2.0",
"stylelint": "^10.1.0",
"stylelint-config-recess-order": "^2.0.3",
"stylelint-config-standard": "^18.3.0",
"stylelint-declaration-use-variable": "^1.7.0",
"stylelint-scss": "^3.9.3",
"ts-loader": "^6.1.0",
"typescript": "^3.5.3",
"vue-eslint-parser": "^6.0.4",
"vue-template-compiler": "~2.6.10"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie 10 and not ie 11",
"not ie <= 8"
],
"files": [
"src/*"
],
"main": "src/index.ts",
"gitHooks": {
"pre-commit": "sh .pre-commit.sh"
}
}