-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.95 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": "my-project",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "vite build",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"deploy": "vue-cli-service s3-deploy",
"dev": "vite",
"format": "prettier . --write",
"preview": "vite preview"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-regular-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/vue-fontawesome": "^3.0.3",
"@headlessui/vue": "^1.7.7",
"@heroicons/vue": "^2.0.13",
"axios": "^1.3.2",
"dotenv": "^16.0.3",
"moment": "^2.29.4",
"moment-timezone": "^0.5.40",
"prune": "^0.0.2",
"tw-elements": "^1.0.0-alpha13",
"vue": "^3.2.45",
"vue-cli-plugin-s3-deploy": "^4.0.0-rc3",
"vue-clipboard2": "^0.3.3",
"vue-router": "^4.2.4",
"vue3-flip-countdown": "^0.1.6"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.0.0",
"@vue/cli-plugin-babel": "~4.4.0",
"@vue/cli-plugin-eslint": "~4.4.0",
"@vue/cli-service": "~4.4.0",
"autoprefixer": "^10.4.13",
"babel-eslint": "^10.1.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^6.2.2",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.4",
"vite": "^4.0.0",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:import/errors",
"plugin:import/warnings",
"plugin:vue/recommended"
],
"rules": {
"import/no-unused-vars": "off",
"no-unused-vars": "off",
"vue/no-multiple-template-root": "off",
"vue/valid-template-root": "off",
"vue/html-self-closing": "off"
}
},
"type": "module"
}