-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
107 lines (107 loc) · 3.47 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
{
"name": "wikistats",
"version": "2.10.3",
"description": "A front end for Wikimedia project statistics. This is a new version implemented with Vue and Semantic UI.",
"main": "index.js",
"engines": {
"node": "10.24.0",
"npm": "6.14.11"
},
"scripts": {
"test": "./node_modules/jest/bin/jest.js",
"testDev": "./node_modules/jest/bin/jest.js --watch",
"build": "rm -rf dist/* && ./webpack/build.js",
"start": "NODE_ENV=development webpack-dev-server --config webpack/dev.config.js",
"dev": "./node_modules/webpack/bin/webpack.js --config webpack/dev.config.js --progress --watch",
"server": "python -m http.server 5000",
"server2": "python -m SimpleHTTPServer 5000"
},
"dependencies": {
"@babel/polyfill": "~7.12.1",
"crossfilter": "~1.3.12",
"d3": "~4.13.0",
"d3-scale-chromatic": "~1.5.0",
"d3-svg-annotation": "~2.5.1",
"date-fns": "~2.16.1",
"dateformat": "~2.2.0",
"fomantic-ui": "~2.8.8",
"jquery": "~3.5.1",
"lodash": "^4.17.21",
"numbro": "~2.3.2",
"primer-tooltips": "~1.5.11",
"topojson-client": "~3.1.0",
"vue": "~2.6.14",
"vue-i18n": "~8.22.2",
"vue-mq": "~0.1.3",
"vue-resize": "~0.4.5",
"vue2-touch-events": "~1.1.2",
"vuex": "~3.0.1"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/preset-env": "^7.12.10",
"@vue/test-utils": "^1.0.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"babel-loader": "^7.0.0",
"babel-plugin-dynamic-import-webpack": "^1.1.0",
"css-loader": "^5.0.1",
"exports-loader": "^0.6.4",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.3.3",
"string-replace-loader": "^3.1.0",
"style-loader": "^3.3.1",
"url-loader": "^4.1.1",
"vue-jest": "^3.0.7",
"vue-loader": "^15.9.5",
"vue-loader-plugin": "^1.3.0",
"vue-template-compiler": "~2.6.14",
"webpack": "^5.10.1",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^4.2.0",
"webpack-dev-middleware": "^4.0.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^4.1.0"
},
"jest": {
"moduleNameMapper": {
"Src(.*)$": "<rootDir>/src/$1",
"^vue$": "vue/dist/vue.common.js",
"\\$": "<rootDir>/node_modules/jquery"
},
"moduleFileExtensions": [
"js",
"json",
"jsx",
"ts",
"tsx",
"node",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"setupFiles": [
"<rootDir>/test/setup.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/wikimedia/analytics-wikistats2"
},
"keywords": [
"Mediawiki",
"Wikimedia",
"Wikistats",
"Wikipedia",
"Stats"
],
"author": "Dan Andreescu, Francisco Dans, Marcel Ruiz Forns, Nuria Ruiz",
"license": "MIT",
"homepage": "https://github.com/milimetric/wikistats-prototype#readme"
}