forked from TLCA-project/tlca-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.22 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
{
"name": "tlca-frontend",
"version": "1.2.5",
"description": "Frontend of the TLCA platform",
"repository": "https://github.com/TLCA-project/tlca-frontend.git",
"author": "AEI Consulting <info@aei-consulting.be>",
"license": "AGPL-3.0-only",
"private": false,
"scripts": {
"prepare": "husky install",
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"i18n:report": "vue-i18n-extract report --vueFiles \"./?(components|layouts|pages)/**/*.?(js|vue)\" --languageFiles \"./lang/*.json\"",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint": "yarn lint:js && yarn lint:prettier",
"lintfix": "prettier --write --list-different . && yarn lint:js --fix",
"test:e2e": "yarn run cypress open",
"test:unit": "jest",
"test": "yarn test:unit"
},
"dependencies": {
"@nuxtjs/apollo": "^4.0.1-rc.5",
"@nuxtjs/auth-next": "5.0.0-1640716105.da0587d",
"@nuxtjs/i18n": "^7.2.0",
"@nuxtjs/redirect-module": "^0.3.1",
"core-js": "^3.25.3",
"echarts": "^5",
"graphql-tag": "^2.12.6",
"luxon": "^2.3.1",
"nuxt": "^2.15.8",
"nuxt-bugsnag": "4.2.2",
"rxjs": "^7.5.5",
"vee-validate": "3",
"vue": "^2.7.10",
"vue-advanced-cropper": "^1.11.1",
"vue-echarts": "^6",
"vue-rx": "^6.2.0",
"vue-server-renderer": "^2.7.10",
"vue-template-compiler": "^2.7.10",
"vuetify": "^2.6.10",
"webpack": "^4.46.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@mdi/font": "^6.5.95",
"@nuxtjs/eslint-config": "^11.0.0",
"@nuxtjs/eslint-module": "^3.1.0",
"@nuxtjs/vuetify": "^1.12.3",
"@vue/test-utils": "^1.3.0",
"@vueuse/core": "^10.4.1",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^29.1.2",
"cypress": "^10.3.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-vue": "^9.5.1",
"husky": "^8.0.1",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"vue-i18n-extract": "^2.0.4",
"vue-jest": "^3.0.4"
}
}