-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 3.48 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
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "vue-expense-app",
"version": "4.8.0",
"private": true,
"scripts": {
"build": "export NODE_OPTIONS=--openssl-legacy-provider && vite build",
"clean": "rm -rf dist tests_output",
"predeploy:dev": "npm run download:dev:env",
"deploy:dev": "export NODE_OPTIONS=--openssl-legacy-provider && npm run build && node deploy.js -dev",
"postdeploy:dev": "npm run download:local:env",
"predeploy:prod": "export AWS_PROFILE=prod && npm run download:prod:env",
"deploy:prod": "export NODE_OPTIONS=--openssl-legacy-provider && npm run build && node deploy.js -prod",
"postdeploy:prod": "export AWS_PROFILE=default && npm run download:local:env",
"predeploy:test": "npm run download:test:env",
"deploy:test": "export NODE_OPTIONS=--openssl-legacy-provider && npm run build && node deploy.js -test",
"postdeploy:test": "npm run download:local:env",
"download:dev:env": "aws s3 cp s3://case-expense-app-resources-dev/.env .env",
"download:local:env": "aws s3 cp s3://case-expense-app-resources-local/.env .env",
"download:prod:env": "aws s3 cp s3://case-consulting-expense-app-resources-prod/.env .env --profile prod",
"download:test:env": "aws s3 cp s3://case-expense-app-resources-test/.env .env",
"eslint": "eslint src/**/*.{js,vue} --fix",
"lint": "npm run eslint && npm run stylelint",
"precommit": "npm run validate && npm run eslint && npm run stylelint && npm run test",
"reinstall": "npm install && npm ci",
"serve": "export NODE_OPTIONS=--openssl-legacy-provider && vite dev --port 8080 --host",
"start": "npm run serve",
"stylelint": "stylelint src/**/*.{css,scss,vue}",
"test": "npm run test:unit",
"test:unit": "vue-cli-service test:unit",
"unit": "npm run test:unit",
"validate": "npm ci"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.5.0"
},
"dependencies": {
"@date-io/dayjs": "3.0.0",
"@mdi/font": "7.4.47",
"auth0-js": "9.26.1",
"axios": "1.7.2",
"chart.js": "4.4.3",
"crypto-js": "4.2.0",
"dayjs": "1.11.11",
"jwt-decode": "4.0.0",
"lodash": "4.17.21",
"mitt": "3.0.1",
"mobile-detect": "1.4.5",
"papaparse": "5.4.1",
"patternomaly": "1.3.2",
"vue": "3.4.31",
"vue-chartjs": "5.3.1",
"vue-confetti-explosion": "1.0.2",
"vue-loader": "17.4.2",
"vue-router": "4.4.0",
"vue-router-multiguard": "1.0.3",
"vue-the-mask": "0.11.1",
"vuetify": "3.6.11",
"vuewordcloud": "19.0.0",
"vuex": "4.1.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz"
},
"devDependencies": {
"@babel/core": "7.24.7",
"@babel/eslint-parser": "7.24.7",
"@vitejs/plugin-vue": "5.0.5",
"@vue/compiler-sfc": "3.4.31",
"@vue/eslint-config-prettier": "9.0.0",
"@vue/test-utils": "2.4.6",
"@vue/vue3-jest": "29.2.6",
"babel-jest": "29.7.0",
"eslint": "8.57.0",
"eslint-plugin-vue": "9.26.0",
"eslint-plugin-vuetify": "2.4.0",
"postcss": "8.4.39",
"postcss-html": "1.7.0",
"postcss-loader": "8.1.1",
"precommit-hook": "3.0.0",
"prettier": "3.3.2",
"sass": "1.77.6",
"stylelint": "16.6.1",
"stylelint-config-recommended-scss": "14.0.0",
"stylelint-config-recommended-vue": "1.5.0",
"vite": "5.3.3"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"pre-commit": [
"validate",
"eslint",
"stylelint"
],
"lint-staged": {
"src/**/*.{js,jsx,json,css,md}": [
"eslint --fix src",
"git add"
]
}
}