-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
102 lines (102 loc) · 2.84 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
{
"name": "tice-web",
"version": "2.1.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/TICESoftware/tice-web.git"
},
"author": {
"name": "TICE Software UG (haftungsbeschraenkt)",
"email": "[email protected]",
"url": "https://tice.software"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build && cp dist/en/index.html dist/",
"lint:vue": "vue-cli-service lint --no-fix",
"lint:tests": "eslint --no-fix test",
"lint": "yarn run lint:vue && yarn run lint:tests",
"test:local": "mocha test/local.test.js --timeout 60000",
"test:remote": "mocha test/remote.test.js",
"test:ci": "test/scripts/startServer.sh && yarn run test:local --reporter mocha-junit-reporter && test/scripts/stopServer.sh || test/scripts/stopServer.sh",
"docker": "docker build -t tice-web -f web.Dockerfile .",
"audit": "yarn audit --frozen-lockfile --level high --groups dependencies"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.3.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/vue-fontawesome": "^2.0.8",
"core-js": "^3.26.0",
"date-fns": "^2.29.3",
"double-ratchet-ts": "^1.0.1",
"element-ui": "^2.15.10",
"elliptic": "^6.5.4",
"jssha": "^3.3.0",
"key-encoder": "^2.0.3",
"libsodium-wrappers": "^0.7.10",
"mapbox-gl": "^2.10.0",
"sodium-hkdf": "^1.0.0",
"vue": "^2.7.13",
"vue-beautiful-chat": "^2.5.0",
"vue-i18n": "^8.27.2",
"vue-mapbox": "^0.4.1",
"vue-timeago": "^5.1.3",
"x3dh": "^1.0.0"
},
"devDependencies": {
"@types/libsodium-wrappers": "^0.7.10",
"@vue/cli-plugin-babel": "^4.5.19",
"@vue/cli-plugin-eslint": "^4.5.19",
"@vue/cli-service": "^4.5.19",
"@vue/eslint-config-airbnb": "^5.3.0",
"axios": "^0.27.2",
"babel-eslint": "^10.1.0",
"babel-plugin-component": "^1.1.1",
"chai": "^4.3.6",
"chromedriver": "^106.0.1",
"eslint": "^8.26.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-vue": "^9.6.0",
"geckodriver": "^3.2.0",
"html-webpack-plugin": "^4.5.2",
"mocha": "^10.1.0",
"mocha-junit-reporter": "^2.1.0",
"node-sass": "^7.0.3",
"sass-loader": "^13.1.0",
"selenium-webdriver": "^4.5.0",
"vue-template-compiler": "^2.7.13"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended",
"airbnb-base"
],
"rules": {
"indent": [
"error",
4
],
"max-len": "off",
"import/no-unresolved": "off",
"no-param-reassign": "off"
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}