-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.76 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.76 KB
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
{
"name": "typescript-vue-starter",
"version": "1.0.0",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"start": "yarn dev",
"dev": "webpack-dev-server --open --liveReload --bonjour --display verbose --watch-poll --progress --devtools --debug --no-cache --watch --config ./webpack.config.js",
"build": "webpack",
"test": "jest"
},
"keywords": [],
"author": {
"name": "Daniel Rosenwasser",
"url": "https://github.com/DanielRosenwasser"
},
"license": "Apache-2.0",
"dependencies": {
"dotenv": "^8.2.0",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^8.4.2",
"vue-router": "^3.2.0"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@vue/test-utils": "^1.0.3",
"css-loader": "^3.5.3",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.0.1",
"mini-css-extract-plugin": "^0.9.0",
"resource-hints-webpack-plugin": "^0.0.2",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"ts-jest": "^26.0.0",
"ts-loader": "^7.0.4",
"typescript": "^3.9.3",
"vue-jest": "^3.0.5",
"vue-loader": "^15.9.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "3.11.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"vue"
],
"modulePaths": [
"<rootDir>/src",
"<rootDir>/node_modules"
],
"transform": {
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest",
".*\\.(ts)$": "ts-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"globals": {
"vue-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$"
}
}