-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.98 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.98 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
{
"name": "gamification-frontend",
"version": "0.7.0",
"description": "Gamification app frontend",
"productName": "Achievit",
"author": "Artem Shuvaev <shuvaevlol@gmail.com>",
"private": true,
"scripts": {
"lint": "eslint --ext .js,.ts,.vue ./",
"lint:fix": "eslint --ext .js,.ts,.vue ./ --fix",
"test": "echo \"See package.json => scripts for available tests.\" && exit 0",
"dev": "quasar dev",
"build": "quasar build",
"test:unit": "jest --updateSnapshot",
"test:unit:ci": "jest --ci",
"test:unit:coverage": "jest --coverage",
"test:unit:watch": "jest --watch",
"test:unit:watchAll": "jest --watchAll",
"serve:test:coverage": "quasar serve test/jest/coverage/lcov-report/ --port 8788",
"concurrently:dev:jest": "concurrently \"quasar dev\" \"jest --watch\"",
"publish:patch": "npm version patch --force",
"publish:minor": "npm version minor --force",
"publish:major": "npm version major --force",
"compile": "graphql-codegen",
"test:e2e": "cross-env NODE_ENV=test start-test \"quasar dev\" http-get://localhost:9000 \"cypress open\"",
"test:e2e:ci": "cross-env NODE_ENV=test start-test \"quasar dev\" http-get://localhost:9000 \"cypress run\"",
"test:component": "cross-env NODE_ENV=test cypress open-ct",
"test:component:ci": "cross-env NODE_ENV=test cypress run-ct"
},
"dependencies": {
"@quasar/extras": "^1.0.0",
"@sentry/tracing": "^7.17.4",
"@sentry/vue": "^7.17.4",
"axios": "^0.21.1",
"connect-history-api-fallback": "^2.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"graphql": "^15.8.0",
"jest-mock-extended": "^4.0.0-beta1",
"pinia": "^2.0.11",
"quasar": "^2.6.0",
"serve-static": "^1.15.0",
"vue": "^3.0.0",
"vue-i18n": "^9.2.2",
"vue-router": "^4.0.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.13.12",
"@graphql-codegen/client-preset": "^1.1.4",
"@graphql-codegen/typescript-graphql-request": "^4.5.8",
"@intlify/vite-plugin-vue-i18n": "^3.3.1",
"@quasar/app-vite": "^1.0.0",
"@quasar/babel-preset-app": "^2.0.1",
"@quasar/quasar-app-extension-testing": "^2.0.4",
"@quasar/quasar-app-extension-testing-e2e-cypress": "^4.2.2",
"@quasar/quasar-app-extension-testing-unit-jest": "^3.0.0-alpha.10",
"@types/node": "^12.20.21",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"@vue/babel-preset-app": "^5.0.8",
"autoprefixer": "^10.4.2",
"babel-plugin-dynamic-import-node": "^2.3.3",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.0.0",
"prettier": "^2.7.1",
"typescript": "^4.5.4"
},
"engines": {
"node": "^18 || ^16 || ^14.19",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}