This repository has been archived by the owner on Jul 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.58 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
{
"name": "hft-app",
"version": "3.0.11",
"private": true,
"description": "",
"author": "Christoph Walcher & Lukas Jans",
"scripts": {
"build:webext": "webpack --config webpack.config.webext.js --mode=production",
"sign:webext": "cd dist; web-ext sign --api-key=$AMO_JWT_ISSUER --api-secret=$AMO_JWT_SECRET; cd ..",
"serve:dev": "webpack-dev-server --config webpack.config.webext.js",
"lint": "eslint --ext .js,.vue src tests",
"test": "jest",
"icons": "cd image; ./scale.sh; cd .."
},
"repository": {
"type": "git",
"url": "https://github.com/hft-app/native"
},
"dependencies": {
"@babel/runtime": "^7.16.0",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/vue-fontawesome": "^0.1.10",
"vue": "^2.6.14",
"vue-i18n": "^8.26.7",
"vue-router": "^3.5.3",
"vuex": "^3.6.2",
"vuex-persist": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@vue/test-utils": "^1.2.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.3",
"copy-webpack-plugin": "^5.1.2",
"css-loader": "^2.1.1",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-vue": "^6.2.2",
"eslint-plugin-vue-i18n": "^0.3.0",
"html-webpack-plugin": "^3.2.0",
"html-webpack-tags-plugin": "^2.0.17",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-serializer-vue": "^2.0.2",
"jsdom": "^16.7.0",
"node-fetch": "^2.6.7",
"raw-loader": "^4.0.2",
"sass": "^1.43.4",
"sass-loader": "^8.0.2",
"vue-jest": "^3.0.7",
"vue-loader": "^15.9.8",
"vue-template-compiler": "^2.6.14",
"web-ext": "^5.5.0",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2",
"zip-webpack-plugin": "^3.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
"^.+\\.vue$": "vue-jest",
"^.+\\.js$": "babel-jest"
},
"moduleDirectories": [
"node_modules",
"src"
],
"moduleNameMapper": {
"^enviroment$": "<rootDir>/enviroment.development.json",
"\\.(css|less|scss)$": "identity-obj-proxy"
},
"snapshotSerializers": [
"jest-serializer-vue"
]
},
"license": "ISC"
}