-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.6 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
{
"version": "1.0.0",
"author": "Arturo Galan <[email protected]>",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"test:unit": "jest test/unit --coverage --coverageReporters='text' --coverageReporters='text-summary'",
"test:e2e": "start-server-and-test dev http-get://localhost:3000 cypress",
"cypress": "cypress run"
},
"dependencies": {
"@j-t-mcc/vue3-chartjs": "^1.1.2",
"axios": "^0.21.1",
"chart.js": "^3.3.2",
"chartjs-plugin-zoom": "^1.0.1",
"pinia": "^2.0.0-beta.2",
"vue": "^3.0.5",
"vue-i18n": "^9.1.6",
"vue-router": "^4.0.8"
},
"devDependencies": {
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"@types/jest": "^25.2.1",
"@vitejs/plugin-vue": "^1.2.3",
"@vue/compiler-sfc": "^3.0.5",
"@vue/test-utils": "^2.0.0-alpha.8",
"autoprefixer": "^10.2.6",
"babel-jest": "^25.2.6",
"cypress": "^7.5.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-vue": "^7.11.0",
"jest": "^25.2.7",
"postcss": "^8.3.2",
"prettier": "^2.3.1",
"start-server-and-test": "^1.12.5",
"tailwindcss": "^2.1.4",
"vite": "^2.3.7",
"vite-plugin-fonts": "^0.2.2",
"vue-jest": "^5.0.0-alpha.10",
"vue-loader": "^16.0.0-alpha.3"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/arturogalan/crypto-dashboard.git"
}
}