-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.6 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
{
"name": "riddc-website-vue",
"version": "0.1.0",
"private": true,
"scripts": {
"preserve": "broccoli build public/css",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint",
"commit": "git-cz",
"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/locales/**/*.json'",
"prebuild": "broccoli build public/css",
"prestart": "npm run prebuild",
"start": "npm run serve",
"deploy": "firebase deploy"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/vue-fontawesome": "^2.0.2",
"async": "^3.2.2",
"bulma": "^0.9.1",
"core-js": "^3.8.3",
"ejs": "^3.1.7",
"eventsource": "^1.1.1",
"handlebars": "4.7.7",
"mapbox-gl": "^2.0.1",
"netmask": "2.0.1",
"plist": "^3.0.5",
"protobufjs": "^6.10.3",
"shell-quote": "^1.7.3",
"url-parse": "^1.5.9",
"vue": "^2.6.11",
"vue-i18n": "^8.22.4",
"vue-mapbox": "^0.4.1",
"vue-router": "^3.4.9",
"vue-scrollto": "^2.20.0",
"vuex": "^3.6.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.10",
"@vue/cli-plugin-e2e-nightwatch": "^4.5.10",
"@vue/cli-plugin-eslint": "^4.5.10",
"@vue/cli-plugin-router": "^4.5.10",
"@vue/cli-plugin-unit-jest": "^4.5.10",
"@vue/cli-plugin-vuex": "^4.5.10",
"@vue/cli-service": "^4.5.10",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "1.1.2",
"babel-eslint": "^10.0.3",
"broccoli": "^3.5.0",
"broccoli-clean-css": "^2.0.1",
"broccoli-cli": "^1.0.0",
"broccoli-merge-trees": "^4.1.0",
"broccoli-sass-source-maps": "^4.0.0",
"chai": "^4.1.2",
"chromedriver": "^87.0.7",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.18.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.4.1",
"firebase-tools": "^9.2.1",
"geckodriver": "^1.21.1",
"git-cz": "^4.7.6",
"lint-staged": "^10.5.3",
"node-sass": "^8.0.0",
"prettier": "^2.2.1",
"sass": "^1.32.5",
"sass-loader": "^10.1.1",
"vue-cli-plugin-i18n": "^1.0.1",
"vue-svg-inline-loader": "^2.1.2",
"vue-svg-loader": "^0.16.0",
"vue-template-compiler": "^2.6.11"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint"
]
}
}