forked from vuestorefront/storefront-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.8 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
{
"name": "@storefrontui/vue",
"version": "0.0.1-aplha.1",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib --name storefront-ui ./src/index.js",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"storybook:serve": "vue-cli-service storybook:serve -s ./src/assets -p 6006 -c config/storybook",
"storybook:build": "vue-cli-service storybook:build -s ./src/assets -c config/storybook",
"postinstall": "node scripts/postinstall.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@snowdog/alpaca-components": "^0.1.2-alpha.0",
"vue": "^2.6.8"
},
"files": [
"dist/*",
"scripts/*",
"node_modules/*"
],
"devDependencies": {
"@storybook/addon-actions": "^5.0.1",
"@storybook/addon-knobs": "^5.0.1",
"@storybook/addon-links": "^5.0.1",
"@storybook/addon-notes": "^5.0.1",
"@types/jest": "^24.0.11",
"@vue/cli-plugin-babel": "^3.5.1",
"@vue/cli-plugin-eslint": "^3.5.1",
"@vue/cli-plugin-typescript": "^3.5.1",
"@vue/cli-plugin-unit-jest": "^3.5.1",
"@vue/cli-service": "^3.5.1",
"@vue/eslint-config-prettier": "^4.0.1",
"@vue/eslint-config-typescript": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.15.1",
"eslint-plugin-vue": "^5.2.2",
"lint-staged": "^8.1.5",
"node-sass": "^4.11.0",
"sass-loader": "^7.1.0",
"ts-jest": "^24.0.0",
"typescript": "^3.3.3333",
"vue-cli-plugin-storybook": "^0.6.0",
"vue-template-compiler": "^2.6.8"
},
"main": "./dist/storefront-ui.common.js",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
}
}