-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.31 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
{
"name": "tw-vue",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "vue-cli-service build --target lib --name tw-vue ./src/index.js",
"report": "vue-cli-service build --report --target lib --name tw-vue ./src/index.js",
"serve": "vue-cli-service serve",
"lint:eslint": "eslint --ext .js,.vue --ignore-path .eslintignore .",
"lint:fix": "yarn run lint:eslint --fix"
},
"main": "dist/tw-vue.umd.js",
"dependencies": {
"@popperjs/core": "^2.5.4",
"@tailwindcss/aspect-ratio": "^0.2.0",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/typography": "^0.3.1",
"core-js": "^3.6.5",
"gsap": "^3.9.1",
"lodash": "^4.17.20",
"portal-vue": "^2.1.7",
"tailwindcss": "^2.0.1-compat",
"velocity-animate": "^1.5.2",
"vue": "^2.6.10",
"vue-router": "^3.4.9"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.3.1",
"@vue/cli-plugin-eslint": "^4.3.1",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-service": "^4.3.1",
"babel-eslint": "^10.0.1",
"eslint": "^7.14.0",
"eslint-plugin-vue": "^7.1.0",
"husky": "^4.0.0",
"lint-staged": "^10.0.0",
"vue-template-compiler": "^2.6.10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": "yarn lint:eslint"
}
}