-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.58 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.58 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
{
"name": "app-website",
"version": "4.0.0",
"private": true,
"scripts": {
"build": "cross-env NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build",
"deploy:test": "npm run download:test:env && npm run build && aws s3 sync dist s3://case-website-front-end-test --delete --sse && npm run download:local:env",
"deploy:prod": "npm run download:prod:env && npm run build && aws s3 sync dist s3://case-website-front-end-prod --delete --sse && npm run download:local:env",
"clean": "rm -rf dist",
"download:local:env": "cross-env AWS_PROFILE=default && aws s3 cp s3://case-website-env-dev-test/.dev-env .env",
"download:test:env": "aws s3 cp s3://case-website-env-dev-test/.test-env .env",
"download:prod:env": "cross-env AWS_PROFILE=prod && aws s3 cp s3://case-website-env/.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",
"serve": "cross-env NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service 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": {
"@mdi/font": "7.3.67",
"@vuelidate/core": "2.0.3",
"@vuelidate/validators": "2.0.4",
"axios": "1.13.5",
"cross-env": "10.1.0",
"jquery": "3.7.1",
"vue": "3.5.2",
"vue-router": "4.2.5",
"vuetify": "3.9.3",
"vuex": "4.1.0"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/eslint-parser": "7.28.6",
"@vue/cli-plugin-babel": "5.0.9",
"@vue/cli-plugin-unit-jest": "5.0.9",
"@vue/cli-service": "5.0.9",
"@vue/eslint-config-prettier": "8.0.0",
"@vue/test-utils": "2.4.6",
"@vue/vue3-jest": "27.0.0",
"babel-jest": "27.5.1",
"eslint": "8.57.1",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-vue": "9.33.0",
"postcss": "8.5.6",
"postcss-html": "1.8.1",
"postcss-loader": "7.3.4",
"precommit-hook": "3.0.0",
"prettier": "3.8.1",
"sass": "1.97.3",
"sass-loader": "13.3.3",
"stylelint": "16.25.0",
"stylelint-config-recommended-scss": "14.1.0",
"stylelint-config-recommended-vue": "1.6.1",
"vue-template-compiler": "2.7.16"
},
"pre-commit": [
"validate",
"eslint",
"stylelint"
],
"lint-staged": {
"src/**/*.{js,jsx,json,css,md}": [
"eslint --fix src",
"git add"
]
}
}