This repository has been archived by the owner on Aug 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.01 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
{
"name": "@tenda.digital/vue-modals",
"version": "1.1.0",
"description": "Display Modals as Dialog, Drawers and Notifications programaticaly with a simple api in Vue JS",
"main": "./dist/vue-modals.common.js",
"types": "./dist/vue-modals.d.ts",
"license": "MIT",
"private": false,
"scripts": {
"start": "vue-cli-service serve --port 8080 --host 0.0.0.0 --disable-host-check",
"build": "vue-cli-service build && node build-swenv.js",
"build-lib": "vue-cli-service build --target lib ./src/main.ts",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"lint": "eslint . --ext=.ts,.js,.vue src"
},
"dependencies": {
"sass-loader": "^8.0.2"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^5.2.4",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"@vue/cli-plugin-babel": "~4.3.0",
"@vue/cli-plugin-e2e-cypress": "~4.3.0",
"@vue/cli-plugin-typescript": "~4.3.0",
"@vue/cli-plugin-unit-mocha": "~4.3.0",
"@vue/cli-service": "~4.3.0",
"@vue/test-utils": "1.0.0-beta.31",
"chai": "^4.1.2",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"hard-source-webpack-plugin": "^0.13.1",
"husky": "^4.2.5",
"lint-staged": "^9.5.0",
"sass": "^1.26.3",
"typescript": "~3.8.3",
"vue": "^2.6.4",
"vue-class-component": "^7.2.6",
"vue-cli-plugin-webpack-bundle-analyzer": "~2.0.0",
"vue-property-decorator": "^9.0.2",
"vue-template-compiler": "^2.6.11"
},
"peerDependencies": {
"vue": "^2.6.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"yarn run lint --fix"
]
}
}