-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.8 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "smartmonitor",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nodemon --watch api --exec \"nuxt\"",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"prepare": "husky install",
"lint": "yarn run lint:js",
"test": "jest",
"swagger-autogen": "node api/swagger.js",
"mongodb_backup": "dotenv -- cross-var mongodump --uri=%MONGO_URL% -o contrib/mongodb/dump --gzip",
"mongodb_restore": "dotenv -- cross-var mongorestore --uri=%MONGO_URL% --gzip --dir $1",
"deploy": "flyctl deploy --verbose --local-only --no-cache"
},
"lint-staged": {
"*.{js,vue}": "eslint --cache",
"*.**": "prettier --check --ignore-unknown"
},
"dependencies": {
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/auth-next": "^5.0.0-1667386184.dfbbb54",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/moment": "^1.6.1",
"@nuxtjs/onesignal": "^3.0.0-beta.16",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/sentry": "^6.0.1",
"@sentry/node": "^7.17.4",
"@sentry/tracing": "^7.17.4",
"apexcharts": "^3.36.3",
"body-parser": "^1.20.1",
"core-js": "^3.25.3",
"cors": "^2.8.5",
"cross-var": "^1.1.0",
"dotenv": "^16.0.3",
"dotenv-cli": "^6.0.0",
"express": "^4.18.2",
"express-jwt": "^7.7.7",
"express-jwt-authz": "^2.4.1",
"express-ws": "^5.0.2",
"helmet": "^6.0.0",
"jwks-rsa": "^3.0.0",
"mongoose": "^6.7.1",
"node-cron": "^3.0.2",
"nuxt": "^2.15.8",
"nuxt-compress": "^5.0.0",
"nuxt-vuex-localstorage": "^1.3.0",
"onesignal-node": "^3.4.0",
"pug": "^3.0.2",
"socket.io": "^4.5.3",
"swagger-autogen": "^2.22.0",
"swagger-ui-express": "^4.5.0",
"v-currency-field": "https://github.com/startupcodebr/v-currency-field",
"v-mask": "^2.3.0",
"vue": "^2.7.10",
"vue-apexcharts": "^1.6.2",
"vue-digital-clock": "^2.0.0",
"vue-server-renderer": "^2.7.10",
"vue-template-compiler": "^2.7.10",
"vuetify": "^2.6.10",
"vuetify-js-utils": "^0.5.10"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@nuxtjs/eslint-config": "^11.0.0",
"@nuxtjs/eslint-module": "^3.1.0",
"@nuxtjs/vuetify": "^1.12.3",
"@vue/test-utils": "^1.3.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^29.1.2",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-vue": "^9.5.1",
"husky": "^8.0.1",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"vue-jest": "^3.0.4"
},
"engines": {
"node": "18.x",
"yarn": ">=1.22.19"
}
}