-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.91 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": "@projectrebel/vueless",
"version": "0.0.4",
"private": false,
"author": "Nolan Nordlund <nolan@projectrebel.io> (http://projectrebel.io)",
"license": "MIT",
"description": "A renderless component library for Vue 3",
"repository": {
"type": "git",
"url": "https://github.com/projectrebel/vueless.git"
},
"bugs": {
"url": "https://github.com/projectrebel/vueless/issues"
},
"files": [
"src"
],
"main": "src/index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"vue": "^3.0.5"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@storybook/addon-actions": "^6.2.0-alpha.20",
"@storybook/addon-essentials": "^6.2.0-alpha.20",
"@storybook/addon-links": "^6.2.0-alpha.20",
"@storybook/vue3": "^6.2.0-alpha.20",
"@vitejs/plugin-vue": "^1.1.2",
"@vue/compiler-sfc": "^3.0.5",
"@vue/test-utils": "^2.0.0-rc.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"jest": "^26.6.3",
"vite": "^2.0.0-beta.50",
"vue-jest": "^5.0.0-alpha.8",
"vue-loader": "^16.1.2"
},
"jest": {
"testRegex": "src/.*.test.js$",
"moduleFileExtensions": [
"js",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/resources/js/$1"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.vue$": "<rootDir>/node_modules/vue-jest"
}
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
},
"keywords": [
"vue",
"vuejs",
"vue 3",
"renderless",
"renderless components",
"component library",
"renderless component library"
]
}