-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
94 lines (94 loc) · 2.7 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
{
"name": "2019.2-arbc",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test:e2e": "vue-cli-service test:e2e",
"test:unit": "vue-cli-service test:unit --coverage",
"jest:update": "jest --updateSnapshot",
"coverage": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"dependencies": {
"axios": "^0.19.0",
"babel-plugin-transform-decorators": "^6.24.1",
"core-js": "^2.6.5",
"node-sass": "^4.12.0",
"register-service-worker": "^1.6.2",
"sass-loader": "^8.0.0",
"simple-statistics": "^7.0.5",
"vue": "^2.6.10",
"vue-class-component": "^7.0.2",
"vue-material": "^1.0.0-beta-11",
"vue-property-decorator": "^8.1.0",
"vue-router": "^3.0.3",
"vuex": "^3.0.1",
"vuex-class": "^0.3.2",
"vuex-module-decorators": "^0.10.1"
},
"devDependencies": {
"@types/jest": "^24.0.22",
"@vue/cli-plugin-babel": "^3.11.0",
"@vue/cli-plugin-e2e-nightwatch": "^4.0.5",
"@vue/cli-plugin-pwa": "^3.11.0",
"@vue/cli-plugin-typescript": "^3.11.0",
"@vue/cli-plugin-unit-jest": "^4.0.5",
"@vue/cli-service": "^3.11.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"codacy-coverage": "^3.4.0",
"coveralls": "^3.0.7",
"jest": "^24.9.0",
"jest-transform-stub": "^2.0.0",
"less": "^3.0.4",
"less-loader": "^5.0.0",
"three": "^0.110.0",
"ts-jest": "^24.1.0",
"typescript": "^3.4.3",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.10"
},
"jest": {
"collectCoverageFrom": [
"**/src/**/*.{js,ts,vue}",
"!**/src/main.ts",
"!**/src/registerServiceWorker.ts",
"!**/node_modules/**",
"!**/dist/**"
],
"moduleFileExtensions": [
"js",
"ts",
"json",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1",
"^.+.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub"
},
"snapshotSerializers": [
"jest-serializer-vue"
],
"transform": {
".*\\.(vue)$": "vue-jest",
"^.+\\.tsx?$": "ts-jest",
".+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$": "jest-transform-stub",
"^.+\\.(js|jsx)$": "babel-jest"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!@babel\\/runtime)"
],
"testPathIgnorePatterns": [
"<rootDir>/tests/e2e"
],
"testEnvironmentOptions": {
"resources": "usable",
"runScripts": "dangerously"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testURL": "http://localhost/"
}
}