-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.39 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.39 KB
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": "nuxt-ui",
"version": "0.2.9",
"description": "Nuxt UI components with configurable classes ready for TailwindCSS",
"repository": {
"type": "git",
"url": "git+https://github.com/516310460/NuxtUI"
},
"keywords": [
"tailwindcss",
"vue",
"nuxt",
"nuxt-ui",
"vue components",
"nuxt components",
"tailwind components"
],
"author": "HomWang",
"license": "MIT",
"main": "dist/nuxt-ui.common.js",
"style": "dist/nuxt-ui.css",
"private": false,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"build-bundle": "vue-cli-service build --target lib --name nuxt-ui index.js && gulp build --gulpfile gulpfile.js",
"start": "nuxt start",
"generate": "nuxt generate",
"test": "jest"
},
"directories": {
"doc": "docs"
},
"dependencies": {
"body-scroll-lock": "^2.6.4",
"cp-cli": "^2.0.0",
"flv.js": "^1.5.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-cssmin": "^0.2.0",
"nuxt": "^2.0.0",
"vue-popperjs": "^2.1.0",
"vue2-datepicker": "^3.3.1"
},
"devDependencies": {
"@nuxtjs/tailwindcss": "^1.0.0",
"@vue/cli-service": "^3.11.0",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-jest": "^24.1.0",
"jest": "^24.1.0",
"vue-jest": "^4.0.0-0"
},
"postcss": {
"plugins": {
"tailwindcss": "./tailwind.config.js",
"autoprefixer": {}
}
}
}