This repository has been archived by the owner on Jan 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.15 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
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "simplicli-webusecase",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --open",
"build": "vue-cli-service build",
"test": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"beta": "vue-cli-service build --mode beta",
"staging": "vue-cli-service build --mode staging"
},
"dependencies": {
"@brazilian-utils/brazilian-utils": "^1.0.0-rc.4",
"@fortawesome/fontawesome-free": "^5.11.2",
"@simpli/meta-schema": "^1.0.2",
"@simpli/resource-collection": "^1.0.9",
"@simpli/serialized-request": "^1.0.5",
"@simpli/vue-adap-table": "^1.0.3",
"@simpli/vue-await": "^1.0.4",
"@simpli/vue-input": "^1.0.4",
"@simpli/vue-modal": "^1.0.4",
"@simpli/vue-render-schema": "^1.0.1",
"@simpli/vuex-typescript": "^1.0.0",
"@types/lodash": "^4.14.149",
"@types/papaparse": "^4.5.9",
"axios": "^0.19.2",
"class-transformer": "^0.3.1",
"compressorjs": "^1.0.5",
"core-js": "^3.3.2",
"cropperjs": "^1.5.1",
"js-sha256": "^0.9.0",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"normalize-scss": "^7.0.1",
"papaparse": "^5.2.0",
"pretty-checkbox": "^3.0.3",
"qs": "^6.9.3",
"reflect-metadata": "^0.1.13",
"register-service-worker": "^1.6.2",
"shortid": "^2.2.14",
"simple-line-icons": "^2.4.1",
"v-money": "^0.8.1",
"vee-validate": "^2.2.15",
"vue": "^2.6.10",
"vue-class-component": "^7.1.0",
"vue-i18n": "^7.6.0",
"vue-meta": "^1.6.0",
"vue-moment": "^4.0.0",
"vue-multiselect": "^2.1.6",
"vue-property-decorator": "^8.3.0",
"vue-router": "^3.0.2",
"vue-snotify": "^3.0.4",
"vue-spinner": "^1.0.3",
"vue-sweetalert2": "^3.0.3",
"vue-the-mask": "^0.11.1",
"vue-transition-expand": "0.0.5",
"vue-upload-component": "^2.8.20",
"vuex": "^3.0.1",
"vuex-class": "^0.3.1",
"xlsx": "^0.15.6"
},
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@fullhuman/postcss-purgecss": "^1.2.0",
"@simpli/cli-scaffold": "2.3.6",
"@types/jest": "^24.0.11",
"@types/qs": "^6.9.1",
"@vue/cli-plugin-babel": "^4.0.0",
"@vue/cli-plugin-eslint": "^4.0.0",
"@vue/cli-plugin-pwa": "^4.0.0",
"@vue/cli-plugin-router": "^4.0.0",
"@vue/cli-plugin-typescript": "^4.0.0",
"@vue/cli-plugin-unit-jest": "^4.0.0",
"@vue/cli-plugin-vuex": "^4.0.0",
"@vue/cli-service": "^4.2.3",
"@vue/eslint-config-prettier": "^5.0.0",
"@vue/eslint-config-typescript": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^5.0.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"sass": "^1.19.0",
"sass-loader": "^8.0.0",
"tailwind-css-variables": "^2.0.2",
"tailwindcss": "^1.0.4",
"tailwindcss-transition": "^1.0.5",
"typescript": "^3.7.2",
"vue-template-compiler": "^2.6.10"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue,ts}": [
"vue-cli-service lint",
"git add"
]
}
}