-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.32 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.32 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
76
77
78
{
"name": "bio2game_frontend",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:style": "stylelint **/*.{vue,css} --ignore-path .gitignore",
"lint": "npm run lint:js && npm run lint:style"
},
"lint-staged": {
"*.{js,vue}": "eslint",
"*.{css,vue}": "stylelint"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxtjs/auth": "github:DraftProducts/auth-module",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/proxy": "^2.1.0",
"@nuxtjs/pwa": "^3.2.2",
"@nuxtjs/robots": "^2.5.0",
"@stripe/stripe-js": "^1.22.0",
"body-scroll-lock": "^4.0.0-beta.0",
"chart.js": "^2.9.4",
"chartjs-plugin-labels": "^1.1.0",
"core-js": "^3.19.0",
"dayjs": "^1.10.7",
"lottie-web": "^5.7.13",
"md5": "^2.3.0",
"moment": "^2.29.1",
"nuxt": "^2.15.7",
"nuxt-webfontloader": "^1.1.0",
"simple-markdown": "^0.7.3",
"simplemde": "^1.11.2",
"socket.io-client": "^4.2.0",
"string-to-vue": "^1.1.2",
"vue-carousel": "^0.18.0",
"vue-chartjs": "^3.5.1",
"vue-notification": "^1.3.20",
"vue-socket.io-extended": "^4.0.4",
"vuedraggable": "^2.24.3",
"vuetable-2": "github:Bio2Game/vuetable-2.git#b0a3afe2ea75ae2209bf79425bf9397c62a8860a"
},
"devDependencies": {
"@babel/eslint-parser": "^7.14.7",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@nuxtjs/device": "^2.1.0",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/style-resources": "^1.2.1",
"@nuxtjs/stylelint-module": "^4.0.0",
"@nuxtjs/svg": "^0.3.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"postcss-sorting": "^5.0.1",
"prettier": "^2.4.1",
"sass": "^1.43.4",
"sass-loader": "^10.1.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0"
}
}