-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 2.97 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
100
{
"name": "@nih-sparc/sparc-design-system-components",
"version": "0.27.7",
"private": false,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"build-bundle": "vue-cli-service build --target lib --name sparc-design-system-components ./src/components/index.js",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md'",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md'",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md'",
"storybook:build": "vue-cli-service storybook:build -c config/storybook",
"storybook:deploy": "storybook-to-ghpages --ci --existing-output-dir=storybook-static",
"storybook:serve": "vue-cli-service storybook:serve -p 6006 -c config/storybook",
"svg": "vsvg -s ./static/icons -t ./src/assets/icons"
},
"main": "./dist/sparc-design-system-components.common.js",
"files": [
"dist/*",
"src/*",
"public/*",
"*.json",
"*.js",
"plugins/*"
],
"dependencies": {
"@carbon/grid": "10.17.0",
"core-js": "^3.6.5",
"date-fns": "^2.25.0",
"element-ui": "2.15.6",
"generate-changelog": "^1.8.0",
"sass": "^1.26.9",
"sass-loader": "^8.0.2",
"storybook-vue-router": "^1.0.7",
"vue-router": "^3.5.1",
"vue-svgicon": "^3.2.9"
},
"devDependencies": {
"@storybook/addon-actions": ">=5.3.0",
"@storybook/addon-docs": "^6.0.0-rc.15",
"@storybook/addon-knobs": ">=5.3.0",
"@storybook/addon-links": ">=5.3.0",
"@storybook/addon-viewport": "^5.3.19",
"@storybook/storybook-deployer": "^2.8.6",
"@storybook/theming": "^5.3.19",
"@storybook/vue": "^6.0.0-rc.15",
"@vue/cli-plugin-babel": "~4.4.0",
"@vue/cli-plugin-eslint": "~4.4.0",
"@vue/cli-plugin-unit-jest": "~4.4.0",
"@vue/cli-service": "~4.4.0",
"@vue/test-utils": "^1.0.3",
"vue": "^2.6.11",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"react": "^16.13.1",
"react-is": "^16.13.1",
"vue-cli-plugin-storybook": "~1.3.0",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {},
"overrides": [
{
"files": [
"**/__tests__/*.{j,t}s?(x)",
"**/tests/unit/**/*.spec.{j,t}s?(x)",
"**/src/components/**/*.spec.{j,t}s?(x)"
],
"env": {
"jest": true
}
}
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:nih-sparc/sparc-design-system-components.git"
}
}