-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.71 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
83
84
85
86
87
88
89
90
91
{
"name": "@chargetrip/internal-vue-components",
"version": "0.0.587",
"private": false,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib src/index.ts --name components",
"lint": "vue-cli-service lint",
"test": "jest",
"test:e2e": "vue-cli-service test:e2e",
"test:unit": "vue-cli-service test:unit",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"animejs": "^3.2.1",
"bezier-easing": "^2.1.0",
"chokidar": "^3.5.1",
"consola": "^2.15.3",
"core-js": "^3.6.5",
"date-fns": "2.10",
"dotenv": "^8.2.0",
"highlight.js": "^10.5.0",
"imask": "^6.4.0",
"js-cookie": "^2.2.1",
"lodash": "^4.17.21",
"sanitize-html": "^2.7.0",
"showdown": "^1.9.1",
"swiper": "^7.4.1",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-imask": "^6.4.0",
"vue-property-decorator": "^8.4.2",
"vue-router": "^3.4.3",
"vuelidate": "^0.7.7"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@storybook/addon-actions": "^6.0.21",
"@storybook/addon-essentials": "^6.1.21",
"@storybook/addon-links": "^6.0.21",
"@storybook/addon-storyshots": "^6.1.21",
"@storybook/vue": "^6.1.21",
"@tailwindcss/postcss7-compat": "^2.0.4",
"@types/jest": "^24.0.19",
"@types/sanitize-html": "^2.6.2",
"@types/vuelidate": "^0.7.15",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-babel": "^4.5.6",
"@vue/cli-plugin-eslint": "^4.5.6",
"@vue/cli-plugin-typescript": "^4.5.0",
"@vue/cli-plugin-unit-jest": "^4.5.0",
"@vue/cli-service": "^4.5.6",
"@vue/composition-api": "^1.4.5",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^1.0.3",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.1.0",
"cloudinary": "^1.26.2",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"intersection-observer": "^0.12.0",
"jest-canvas-mock": "^2.3.1",
"jest-vue-preprocessor": "^1.7.1",
"lint-staged": "^9.5.0",
"postcss": "^7.0.35",
"prettier": "^1.19.1",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.4",
"typescript": "~3.9.3",
"vue-template-compiler": "^2.6.11"
},
"gitHooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
},
"main": "./dist/components.common.js"
}