forked from Kholid060/snapcode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.66 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
{
"name": "CodeSnippet",
"version": "1.0.0",
"private": false,
"scripts": {
"serve": "vue-cli-service serve",
"build": "yarn install && vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@mdi/js": "^5.1.45",
"axios": "^0.21.1",
"core-js": "^3.6.4",
"dayjs": "^1.8.26",
"dexie": "^3.0.0",
"faker": "^4.1.0",
"http-parser-js": "^0.5.3",
"jquery-param": "^1.1.3",
"lodash": "^4.17.20",
"lodash.camelcase": "^4.3.0",
"lodash.debounce": "^4.0.8",
"material-icons": "^0.5.4",
"mdi-vue": "^3.0.5",
"register-service-worker": "^1.6.2",
"shortid": "^2.2.15",
"simplebar-vue": "^1.4.0",
"v-calendar": "^2.2.4",
"v-tooltip": "^2.0.3",
"vue": "^2.6.11",
"vue-codemirror": "^4.0.6",
"vue-js-modal": "^2.0.0-rc.3",
"vue-mdijs": "^0.4.13",
"vue-multiselect": "^2.1.6",
"vue-router": "^3.1.5",
"vuex": "^3.1.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.2.0",
"@vue/cli-plugin-eslint": "~4.2.0",
"@vue/cli-plugin-pwa": "~4.2.0",
"@vue/cli-plugin-router": "~4.2.0",
"@vue/cli-plugin-vuex": "~4.2.0",
"@vue/cli-service": "~4.2.0",
"@vue/eslint-config-airbnb": "^5.0.2",
"babel-eslint": "^10.0.3",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-vue": "^6.1.2",
"lint-staged": "^9.5.0",
"node-sass": "^4.12.0",
"sass-loader": "^8.0.2",
"vue-cli-plugin-tailwind": "~1.3.0",
"vue-template-compiler": "^2.6.11"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
}
}