-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.07 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.07 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
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "gladiator-frontend",
"version": "0.1.12",
"private": "true",
"scripts": {
"dev": "vite",
"dev:beta": "cross-env VITE_STAGE=dev vite",
"dev:mock": "cross-env VITE_STAGE=mock vite",
"lint": "eslint \"./**/*.?(js|vue)\"",
"lint:style": "stylelint \"**/*.{vue,css}\" --ignore-path .gitignore",
"lint:fix": "eslint --fix \"./src/**/*.?(js|vue)\" && npm run lint:style --fix && npm run prettier",
"lint-staged": "lint-staged",
"prettier": "prettier --write \"./src/**/*.?(js|vue|css|json)\"",
"build": "vite build",
"build:staging": "vite build --mode staging",
"build:mock": "VITE_STAGE=mock vite build",
"serve": "vite preview",
"test:coverage": "jest tests --verbose --coverage --runInBand --watchAll=false --ci",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"test:integration:leak": "jest tests/integration --runInBand --detectOpenHandles",
"test:unit:watch": "jest tests/unit --watch",
"test:integration:watch": "jest tests/integration --watch",
"test": "jest tests --verbose --coverage --runInBand --watchAll=false --ci",
"test:full": "jest tests --verbose",
"test:watch": "jest tests --watch",
"test:watch:file": "jest --watch",
"jest:clearCache": "jest --clearCache",
"test:file": "jest"
},
"dependencies": {
"@openid/appauth": "^1.3.1",
"@tinymce/tinymce-vue": "^5.0.0",
"@aws-amplify/core": "^4.3.19",
"@aws-amplify/api": "^4.0.40",
"file-saver": "^2.0.5",
"json-to-csv-export": "^1.1.0",
"lodash": "^4.17.21",
"papaparse": "^5.3.2",
"reveal.js": "^4.3.1",
"vue": "^3.2.31",
"vue-draggable-next": "^2.1.1",
"vue-gtag-next": "^1.14.0",
"vue-router": "^4.0.13",
"vuex": "^4.0.0"
},
"devDependencies": {
"@babel/node": "^7.16.8",
"vue-router-mock": "^0.1.7",
"@babel/preset-env": "^7.16.11",
"@types/jest": "^27.4.1",
"@vitejs/plugin-vue": "^2.3.1",
"@vue/compiler-sfc": "^3.2.31",
"@vue/test-utils": "^2.0.0",
"@vue/vue3-jest": "^27.0.0",
"autoprefixer": "^10.4.4",
"@babel/core": "^7.17.12",
"babel-jest": "^27.4.2",
"babel-plugin-transform-import-meta": "^2.1.1",
"babel-preset-vite": "^1.0.4",
"cross-env": "^7.0.3",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-sonarjs": "^0.13.0",
"eslint-plugin-vue": "^9.0.1",
"@types/tailwindcss": "^3.0.10",
"jest": "^27.4.3",
"jsdom": "^19.0.0",
"lint-staged": "^12.3.7",
"postcss": "^8.4.12",
"postcss-html": "^1.2.0",
"pre-commit": "^1.2.2",
"prettier": "^2.6.2",
"stylelint": "^14.6.1",
"stylelint-config-recommended": "^7.0.0",
"stylelint-config-recommended-vue": "^1.4.0",
"tailwindcss": "^3.0.23",
"vite": "^2.8.6",
"vite-plugin-pwa": "^0.12.0",
"vite-plugin-svg-icons": "^2.0.1"
},
"precommit": "lint-staged",
"lint-staged": {
"*.{css,vue}": [
"stylelint --fix",
"prettier --write"
],
"*.{js,vue}": [
"eslint --fix",
"prettier --write"
],
"*.json": "prettier --write"
}
}