-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.92 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.92 KB
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
{
"name": "citizenscience.ch",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"ci-build": "vue-cli-service build && react-snap && vercel --prod",
"staging": "vue-cli-service build --mode staging && react-snap && vercel"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"@prismicio/client": "^5.1.1",
"@prismicio/vue": "^2.1.2",
"axios": "^0.21.1",
"jw-vue-pagination": "^1.0.3",
"minio": "^7.0.18",
"normalize.css": "^8.0.1",
"prismic-dom": "^2.2.7",
"sass": "^1.49.0",
"sass-loader": "^7.3.1",
"secure-ls": "^1.2.6",
"simple-analytics-vue": "^1.1.5",
"vercel": "^21.3.3",
"vue": "^2.6.14",
"vue-gtag": "^1.16.1",
"vue-i18n": "^8.24.4",
"vue-meta": "^1.6.0",
"vue-moment": "^4.1.0",
"vue-router": "^3.5.1",
"vue-scrollto": "^2.20.0",
"vue-sweetalert2": "^4.3.1",
"vue-twitter": "^0.1.0",
"vuex": "^3.6.2",
"vuex-persistedstate": "^2.7.1"
},
"devDependencies": {
"@kazupon/vue-i18n-loader": "^0.3.0",
"@vue/cli-plugin-babel": "^3.12.1",
"@vue/cli-plugin-eslint": "^3.12.1",
"@vue/cli-service": "^3.12.1",
"react-snap": "^1.23.0",
"vue-template-compiler": "^2.6.14"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"no-console": "off",
"no-mixed-spaces-and-tabs": 0,
"no-unused-vars": "off"
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"reactSnap": {
"source": "dist",
"minifyHtml": {
"collapseWhitespace": false,
"removeComments": false
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}