-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.97 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
{
"name": "bubistats-frontend",
"version": "1.0.0",
"description": "Frontend for BubiStats",
"private": true,
"main": "main.js",
"scripts": {
"lint": "npx eslint src tests --ext .js,.jsx,.ts,.tsx,.vue",
"test": "jest",
"build": "npm run lint && npm run test && node --max-old-space-size=8192 node_modules/webpack/bin/webpack.js --config webpack.prod.js",
"start:firebase-emu": "firebase emulators:start --import=.dev/emulator-data/ --export-on-exit",
"start:devserver": "node --max-old-space-size=8192 node_modules/webpack/bin/webpack.js serve --config webpack.dev.js",
"start:functions": "npm --prefix functions run watch",
"dev": "run-p start:*"
},
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"@types/file-saver": "^2.0.3",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.170",
"@types/luxon": "^1.27.0",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"css-loader": "^6.2.0",
"eslint": "^7.31.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-vue": "^7.14.0",
"favicons-webpack-plugin": "^5.0.2",
"git-revision-webpack-plugin": "^5.0.0",
"html-webpack-plugin": "^5.3.1",
"jest": "^27.0.6",
"npm-run-all": "^4.1.5",
"subpackage": "^1.1.0",
"ts-jest": "^27.0.4",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"vue-loader": "^15.9.7",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.39.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"buefy": "^0.9.8",
"file-saver": "^2.0.5",
"firebase": "^9.0.0-beta.6",
"highcharts": "^9.1.2",
"highcharts-vue": "^1.4.0",
"luxon": "^1.27.0",
"uuid": "^3.4.0",
"vue": "^2.6.14",
"vue-meta": "^2.4.0",
"vue-router": "^3.5.2"
}
}