forked from shoonyatech/frontend.social
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.96 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
104
{
"name": "responsive-navigation",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"start": "node server.js",
"test": "vue-cli-service test:unit",
"commit": "cz",
"format": "prettier --write",
"format:all": "prettier --write \"src/**/*.{vue, js,json,css,md}\""
},
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^18.0.0",
"@ckeditor/ckeditor5-vue": "^1.0.1",
"@zoomus/websdk": "^1.7.5",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"bootstrap": "^4.4.1",
"bootstrap-vue": "^2.4.0",
"capitalize": "^2.0.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"core-js": "^2.6.11",
"dotenv": "^8.2.0",
"esri-leaflet-geocoder": "^2.3.3",
"express": "^4.17.1",
"express-session": "^1.17.0",
"heroku-ssl-redirect": "0.0.4",
"leaflet": "^1.7.1",
"leaflet-gesture-handling": "^1.2.1",
"moment-timezone": "^0.5.27",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"register-service-worker": "^1.7.1",
"uuid": "^8.0.0",
"vue": "^2.6.11",
"vue-authenticate": "^1.4.1",
"vue-cookies": "^1.6.1",
"vue-country-region-select": "^2.0.11",
"vue-infinite-scroll": "^2.0.2",
"vue-markdown": "^2.2.4",
"vue-moment": "^4.1.0",
"vue-router": "^3.1.5",
"vue-star-rating": "^1.6.1",
"vue-tweet-embed": "^2.4.0",
"vue-youtube": "^1.4.0",
"vuex": "^3.1.2"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@vue/cli-plugin-babel": "^3.12.1",
"@vue/cli-plugin-eslint": "^3.12.1",
"@vue/cli-plugin-pwa": "^4.4.6",
"@vue/cli-plugin-unit-mocha": "^3.12.1",
"@vue/cli-service": "^3.12.1",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-eslint": "^10.0.3",
"chai": "^4.1.2",
"chart.js": "^2.9.4",
"cloudinary-vue": "^1.1.2",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^5.2.3",
"lint-staged": "^10.3.0",
"mem": "^5.1.1",
"prettier": "^2.1.1",
"sass": "^1.25.0",
"sass-loader": "^7.1.0",
"vue-chartjs": "^3.5.1",
"vue-sidebar-menu": "^4.7.4",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"root": true,
"extends": [
"plugin:vue/essential",
"plugin:prettier/recommended",
"eslint:recommended"
]
},
"gitHooks": {
"commit-msg": "commitlint -H https://github.com/shoonyatech/frontend.social#create-local-commit -e $GIT_PARAMS",
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint"
],
"*.{js,vue,json,css,md}": [
"npm run format"
]
}
}