This repository was archived by the owner on Aug 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.32 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
{
"name": "jaoweb-status",
"version": "2.1.0",
"private": true,
"scripts": {
"_dev": "nuxt",
"_build": "nuxt build",
"_start": "nuxt start",
"dev": "node -r tsconfig-paths/register ./node_modules/nuxt/bin/nuxt.js",
"build": "nuxt build",
"start": "node -r tsconfig-paths/register ./node_modules/nuxt/bin/nuxt.js start",
"generate": "nuxt generate",
"prod": "test -d .nuxt || yarn build ; yarn start",
"lint:js": "eslint --ext \".js,.ts,.vue\" --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.{css,scss,sass,html,vue}\" --ignore-path .gitignore",
"lint:prettier": "prettier --check .",
"lint": "yarn lint:js && yarn lint:style && yarn lint:prettier",
"lintfix": "prettier --write --list-different . && yarn lint:js --fix && yarn lint:style --fix",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --cache",
"*.{css,scss,sass,html,vue}": "stylelint",
"*.**": "prettier --check --ignore-unknown"
},
"dependencies": {
"@nuxtjs/axios": "5.13.6",
"@nuxtjs/pwa": "3.3.5",
"@nuxtjs/vuetify": "1.12.3",
"core-js": "3.32.0",
"nuxt": "2.17.1",
"vue": "2.6.14",
"vue-server-renderer": "2.6.14",
"vue-template-compiler": "2.6.14",
"vuetify": "3.3.11",
"webpack": "5.88.2"
},
"devDependencies": {
"@babel/eslint-parser": "7.22.9",
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.7",
"@nuxt/types": "2.16.0",
"@nuxt/typescript-build": "3.0.1",
"@nuxtjs/eslint-config-typescript": "12.0.0",
"@nuxtjs/eslint-module": "4.1.0",
"@nuxtjs/stylelint-module": "5.1.0",
"@types/cors": "2.8.13",
"@types/ping": "0.4.1",
"@types/sqlite3": "3.1.8",
"axios": "1.4.0",
"cardinal": "2.1.1",
"cors": "2.8.5",
"eslint": "8.46.0",
"eslint-config-prettier": "8.9.0",
"eslint-plugin-nuxt": "4.0.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-vue": "8.7.1",
"express": "4.18.2",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"mysql2": "3.2.0",
"net": "1.0.2",
"ping": "0.4.4",
"postcss-html": "1.5.0",
"prettier": "2.8.8",
"sqlite3": "5.1.6",
"stylelint": "15.10.2",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-recommended-vue": "1.5.0",
"stylelint-config-standard": "34.0.0"
}
}