-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "hodlfolio",
"version": "1.0.0",
"description": "A Vue.js project",
"author": "Marios Vladimerou",
"scripts": {
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint",
"build:ci": "npm-run-all clean build:client build:server",
"build:client": "vue-cli-service build",
"build:server": "babel -d ./dist/server ./server",
"clean": "rimraf dist",
"coverage": "jest server/test --forceExit --coverage",
"cypress:open": "cypress open",
"cypress:run:ci": "node serve_and_run_cypress_ci.js",
"dev": "run-p start:client start:server",
"migrate": "knex migrate:latest --cwd server",
"start": "node server/index.js",
"start:client": "vue-cli-service serve",
"start:server": "nodemon server/index.js --exec babel-node --watch server",
"test": "jest server/test --forceExit"
},
"dependencies": {
"@koa/router": "^10.1.0",
"axios": "^0.21.1",
"big.js": "^6.1.1",
"cryptocoins-icons": "^2.9.0",
"glob": "^7.1.7",
"highcharts": "^9.1.2",
"interval-cache": "^1.0.0",
"knex": "^0.21.21",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-combine-routers": "^4.0.2",
"koa-compress": "^5.0.1",
"koa-helmet": "^6.1.0",
"koa-logger": "^3.0.0",
"koa-ratelimit-lru": "^1.1.0",
"koa-send": "^5.0.1",
"koa-static": "5.0.0",
"lodash": "^4.17.21",
"material-design-icons-iconfont": "^6.1.0",
"node-currency-swap": "^1.0.6",
"objection": "^2.2.15",
"pg": "^8.7.1",
"register-service-worker": "^1.7.2",
"uid-generator": "^2.0.0",
"uniqid": "^5.3.0",
"vue": "^2.6.14",
"vue-highcharts": "0.1.0",
"vue-router": "^3.5.2",
"vuetify": "^2.5.8",
"vuex": "^3.6.2",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/node": "^7.14.9",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@vue/cli-plugin-babel": "4.5.12",
"@vue/cli-plugin-e2e-cypress": "4.5.12",
"@vue/cli-plugin-eslint": "4.5.12",
"@vue/cli-plugin-pwa": "4.5.12",
"@vue/cli-plugin-router": "^4.5.13",
"@vue/cli-plugin-vuex": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"@vue/eslint-config-airbnb": "5.0.2",
"@vue/eslint-config-prettier": "6.0.0",
"babel-eslint": "^10.1.0",
"babel-plugin-import": "^1.13.3",
"babel-plugin-module-resolver": "^4.1.0",
"copy-webpack-plugin": "^5.1.2",
"cypress": "^7.7.0",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^6.2.2",
"jest": "^25.5.4",
"node-sass": "^4.14.1",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.5",
"sass": "^1.37.5",
"sass-loader": "^10.2.0",
"supertest": "^4.0.2",
"vue-cli-plugin-vuetify": "^2.4.2",
"vue-template-compiler": "^2.6.14",
"vuetify-loader": "^1.7.0",
"webpack": "^4.46.0"
},
"eslintConfig": {
"parserOptions": {
"parser": "babel-eslint"
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"engines": {
"node": "14.x",
"npm": "6.x"
},
"license": "MIT"
}