-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
60 lines (60 loc) · 1.81 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
{
"name": "vue-loading-skeleton",
"version": "2.0.0-beta.1",
"main": "dist/vue-loading-skeleton.cjs.js",
"module": "dist/vue-loading-skeleton.es.js",
"description": "Make beautiful loading skeleton that automatically adapt your vue app.",
"keywords": [
"vuejs",
"vue",
"skeleton"
],
"types": "types/index.d.ts",
"style": "dist/style.css",
"license": "MIT",
"scripts": {
"build": "vite build",
"deploy": "npm run lint && npm run test:unit && npm run build && npm run build-storybook",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"storybook": "start-storybook -p 6006",
"build:storybook": "build-storybook --modern -o ./docs"
},
"dependencies": {
"@vue/compat": "^3.1.0",
"core-js": "2",
"vue": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/vue3": "^6.4.19",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"@vitejs/plugin-vue": "^2.2.0",
"@vue/cli-plugin-babel": "^5.0.1",
"@vue/cli-plugin-eslint": "^5.0.1",
"@vue/compiler-sfc": "^3.2.31",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "2.0.0-rc.18",
"babel-loader": "^8.2.3",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-vue": "^8.4.1",
"prettier": "^2.5.1",
"rollup": "^2.67.3",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-vue": "^6.0.0-beta.10",
"typescript": "^4.5.5",
"vite": "^2.8.4",
"vue-loader": "^16.8.3",
"vue-tsc": "^0.29.8"
},
"bowserslist": [
"defaults"
]
}