-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "costs",
"version": "1.0.0",
"private": true,
"scripts": {
"dev:client": "nuxt --port 4000",
"dev:server": "ts-node-dev --respawn -r tsconfig-paths/register server/index.ts",
"build": "nuxt build",
"start": "nuxt start",
"heroku-postbuild": "npm run build-server",
"start-server": "node -r tsconfig-paths/register dist/server/index.js",
"build-server": "tsc -p tsconfig-build.json",
"generate": "nuxt generate",
"lint:js": "eslint --ext .js,.vue,.ts --ignore-path .gitignore . --fix",
"lint": "npm run lint:js"
},
"lint-staged": {
"*.{js,vue}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxtjs/apollo": "^4.0.1-rc.5",
"@nuxtjs/auth": "^4.9.1",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/toast": "^3.3.1",
"apexcharts": "^3.28.1",
"apollo-client": "^2.6.10",
"apollo-server-core": "^3.3.0",
"apollo-server-express": "^3.3.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"bull": "^3.29.2",
"class-validator": "^0.13.1",
"consola": "^2.15.3",
"cors": "^2.8.5",
"date-fns": "^2.23.0",
"dinero.js": "^1.9.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-session": "^1.17.2",
"graphql": "^15.5.3",
"graphql-tag": "^2.12.5",
"jsonwebtoken": "^8.5.1",
"nodemailer": "^6.6.3",
"nuxt": "^2.15.8",
"pg": "^8.7.1",
"qrcode": "^1.4.4",
"reflect-metadata": "^0.1.13",
"subscriptions-transport-ws": "^0.9.19",
"tsconfig-paths": "^3.11.0",
"type-graphql": "^1.1.1",
"typeorm": "^0.2.37",
"vue-apexcharts": "^1.6.2",
"vue-the-mask": "^0.11.1"
},
"devDependencies": {
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-config-typescript": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/vuetify": "^1.12.1",
"@types/bcryptjs": "^2.4.2",
"@types/bull": "^3.15.4",
"@types/dinero.js": "^1.8.1",
"@types/express-fileupload": "^1.1.7",
"@types/express-session": "^1.17.4",
"@types/graphql": "^14.5.0",
"@types/jsonwebtoken": "^8.5.5",
"@types/lodash": "^4.14.173",
"@types/nodemailer": "^6.4.4",
"@types/qrcode": "^1.4.1",
"@types/validator": "^13.7.0",
"@types/vue-the-mask": "^0.11.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vuetify": "^1.0.1",
"fibers": "^5.0.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.4.0",
"sass": "^1.32.13",
"sass-loader": "^10.1.1",
"ts-loader": "^8.3.0",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.3",
"webpack": "^4.46.0"
}
}