-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.04 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
{
"name": "99x-vue-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"test:e2e.run": "chmod +x ./cypress.run.sh && ./cypress.run.sh",
"test:e2e.open": "vue-cli-service test:e2e"
},
"dependencies": {
"core-js": "^3.23.5",
"vue": "^3.2.37",
"vue-router": "^4.1.2",
"vuex": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@cypress/webpack-preprocessor": "^5.12.0",
"@types/jest": "^27.5.2",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-e2e-cypress": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-plugin-router": "~5.0.8",
"@vue/cli-plugin-typescript": "~5.0.8",
"@vue/cli-plugin-unit-jest": "~5.0.8",
"@vue/cli-plugin-vuex": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"@vue/eslint-config-standard": "^6.1.0",
"@vue/eslint-config-typescript": "^8.0.0",
"@vue/test-utils": "^2.0.2",
"@vue/vue3-jest": "^27.0.0",
"babel-core": "6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.5",
"compression-webpack-plugin": "^10.0.0",
"cypress": "^10.3.0",
"eslint": "^7.32.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-vue": "^7.20.0",
"jest": "^27.5.1",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^13.0.3",
"mocha": "^9.1.1",
"mocha-junit-reporter": "^2.0.0",
"mochawesome": "^6.3.1",
"mochawesome-merge": "^4.2.1",
"mochawesome-report-generator": "^5.2.0",
"sass": "^1.53.0",
"sass-loader": "^12.6.0",
"ts-jest": "^27.1.5",
"typescript": "~4.5.5",
"webpack": "^5.73.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
}
}