-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.57 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
{
"name": "@toucantoco/components",
"description": "Toucan Toco's Component Library",
"version": "0.1.0-alpha.16",
"scripts": {
"serve": "vue-cli-service serve src/docs/index.js",
"build": "vue-cli-service build --target lib --name tc-components src/main.js && rm ./dist/demo.html",
"build:docs": "vue-cli-service build src/docs/index.js",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint"
},
"repository": {
"type": "git",
"url": "https://github.com/ToucanToco/components.git"
},
"license": "MIT",
"files": [
"dist"
],
"main": "dist/tc-components.common.js",
"peerDependencies": {
"vue": "^2.6.11"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.4.1",
"@vue/cli-plugin-eslint": "^4.4.1",
"@vue/cli-plugin-unit-jest": "^4.4.1",
"@vue/cli-service": "^4.4.1",
"@vue/test-utils": "1.0.3",
"babel-eslint": "^10.0.3",
"core-js": "^3.6.4",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^6.1.2",
"firebase-tools": "^8.4.2",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^4.3.0",
"lint-staged": "^10.2.9",
"lodash": "^4.17.15",
"node-sass": "^4.13.1",
"prettier": "^2.0.4",
"sass-loader": "^8.0.2",
"vue": "^2.6.11",
"vue-router": "^3.3.2",
"vue-template-compiler": "^2.6.11",
"vuex": "^3.4.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint"
]
}
}