-
Notifications
You must be signed in to change notification settings - Fork 683
/
Copy pathpackage.json
49 lines (49 loc) · 1.51 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
{
"name": "frontend",
"version": "4.0.0",
"private": true,
"description": "A Vue.js & Spring Boot example project",
"author": "Jonas Hecht <[email protected]>",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit --coverage",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint",
"clean": "rm -rf node_modules target",
"test": "vue-cli-service test:unit && vue-cli-service test:e2e"
},
"dependencies": {
"axios": "0.21.4",
"bootstrap": "5.3.3",
"core-js": "3.36.0",
"vue": "3.2.47",
"vue-router": "4.2.5",
"vuex": "4.1.0"
},
"devDependencies": {
"@types/jest": "27.5.2",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"@vue/cli-plugin-babel": "4.5.13",
"@vue/cli-plugin-e2e-nightwatch": "5.0.0",
"@vue/cli-plugin-eslint": "4.5.19",
"@vue/cli-plugin-router": "4.5.13",
"@vue/cli-plugin-typescript": "4.5.13",
"@vue/cli-plugin-unit-jest": "5.0.0-beta.3",
"@vue/cli-plugin-vuex": "4.5.13",
"@vue/cli-service": "4.5.13",
"@vue/compiler-sfc": "3.2.47",
"@vue/eslint-config-typescript": "7.0.0",
"@vue/test-utils": "2.4.4",
"babel-jest": "26.6.3",
"chromedriver": "111.0.0",
"eslint": "6.8.0",
"eslint-plugin-vue": "7.20.0",
"geckodriver": "3.2.0",
"node-sass": "8.0.0",
"sass-loader": "10.5.2",
"typescript": "4.9.5",
"vue-jest": "5.0.0-alpha.10"
}
}