-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.81 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
{
"name": "vue-apollo-graphql",
"version": "0.0.1",
"description": "Vue integration of Apollo GraphQL",
"main": "builds/index.js",
"types": "builds/index.d.ts",
"author": "Mohannad Al-Awad",
"license": "MIT",
"scripts": {
"lint": "yarn --silent concurrently yarn:lint:eslint yarn:lint:stylelint",
"lint:eslint": "yarn --silent eslint --config eslint.config.js --cache --format codeframe '**/*.{js,ts,tsx}' ; exit 0",
"lint:stylelint": "yarn --silent stylelint --report-needless-disables --report-invalid-scope-disables --cache --custom-formatter node_modules/stylelint-codeframe-formatter '**/*.css' ; exit 0",
"run": "yarn --silent webpack-dev-server ; exit 0",
"test": "yarn --silent jest --watch --coverage ; exit 0",
"build": "yarn --silent webpack --mode production; exit 0",
"analyze:source-map-explorer": "yarn --silent source-map-explorer builds/*; exit 0",
"analyze:webpack-bundle-analyzer": "yarn --silent webpack-bundle-analyzer builds/stats.json; exit 0",
"analyze:whybundled": "yarn --silent whybundled builds/stats.json; exit 0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.11.2",
"@types/echarts": "^4.1.15",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link-http": "^1.5.16",
"apollo-link-schema": "^1.2.4",
"core-js": "^3.2.1",
"echarts": "^4.3.0",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"graphql-tools": "^4.0.5",
"tailwindcss": "^1.1.2",
"vue": "^2.6.10",
"vue-apollo": "^3.0.0-rc.7",
"vue-echarts": "^4.0.4",
"vuetify": "^2.1.3"
},
"peerDependencies": {},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@fullhuman/postcss-purgecss": "^1.3.0",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.12",
"@types/webpack-env": "^1.14.0",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-root-import": "^6.4.1",
"babel-preset-proposals": "^0.1.0",
"bundle-buddy": "^0.2.2",
"cache-loader": "^4.1.0",
"case-sensitive-paths-webpack-plugin": "^2.2.0",
"concurrently": "^5.0.0",
"css-loader": "^3.2.0",
"cssnano": "^4.1.10",
"emit-file-loader": "^0.0.2",
"eslint": "^6.5.1",
"event-hooks-webpack-plugin": "^2.1.4",
"extract-css-chunks-webpack-plugin": "^4.6.0",
"fast-glob": "^3.1.0",
"file-loader": "^4.2.0",
"font-awesome-minify-plugin": "^1.0.7",
"fork-ts-checker-webpack-plugin": "^1.5.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"fs-extra": "^8.1.0",
"html-webpack-plugin": "^4.0.0-beta.8",
"jest": "^24.9.0",
"jest-chain": "^1.1.2",
"jest-extended": "^0.11.2",
"jest-serializer-vue": "^2.0.2",
"jest-transform-stub": "^2.0.0",
"jest-watch-typeahead": "^0.4.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.8.0",
"postcss": "^7.0.18",
"postcss-preset-env": "^6.7.0",
"sass": "^1.23.0",
"sass-loader": "^8.0.0",
"source-map-explorer": "^2.1.0",
"stats-webpack-plugin": "^0.7.0",
"style-loader": "^1.0.0",
"stylelint": "^11.1.1",
"stylelint-codeframe-formatter": "^1.0.4",
"stylelint-config-standard": "^19.0.0",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"ts-jest": "^24.1.0",
"ts-loader": "^6.2.0",
"typescript": "^3.6.4",
"vue-loader": "^15.7.1",
"vue-template-compiler": "^2.6.10",
"vuetify-loader": "^1.3.0",
"webpack": "^4.41.1",
"webpack-bundle-analyzer": "^3.5.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2",
"webpack-node-externals": "^1.7.2",
"webpack-sources": "^1.4.3",
"webpackbar": "^4.0.0",
"whybundled": "^1.4.2"
}
}