-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.59 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
{
"name": "almanack",
"version": "0.1.0",
"type": "module",
"scripts": {
"serve": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "yarn run test:eslint && yarn run test:prettier",
"test:eslint": "eslint src",
"test:prettier": "prettier --ignore-path .gitignore --check './*.{js,vue,yml,json}' 'src/**/*.{js,vue,yml,json}'",
"lint": "yarn run lint:eslint && yarn run lint:prettier",
"lint:eslint": "eslint --fix src",
"lint:prettier": "prettier --ignore-path .gitignore --write './*.{js,vue,yml,json}' 'src/**/*.{js,vue,yml,json}'"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.2",
"@fortawesome/free-regular-svg-icons": "^6.1.2",
"@fortawesome/free-solid-svg-icons": "^6.1.2",
"@fortawesome/vue-fontawesome": "^3.0.1",
"@sentry/vue": "^8.23.0",
"@unhead/vue": "^1.7.4",
"bulma": "^0.9.4",
"core-js": "^3.38.0",
"journalize": "^2.5.1",
"netlify-identity-widget": "^1.9.2",
"vue": "^3.2.37",
"vue-router": "^4",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/eslint-parser": "^7.12.16",
"@eslint/js": "^9.8.0",
"@vitejs/plugin-vue": "^5.0.5",
"autoprefixer": "^10.4.20",
"eslint": "^9.8.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.27.0",
"globals": "^15.9.0",
"prettier": "3.4.2",
"sass": "^1.54.3",
"unplugin-vue-components": "28.0.0",
"vite": "^6.0.9",
"vite-plugin-eslint": "^1.7.0"
},
"prettier": {
"trailingComma": "es5"
}
}