-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.62 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
{
"name": "sample-vue-js",
"version": "1.0.0",
"description": "Sample Vue Tsx boilerplate",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack",
"test:unit": "jest"
},
"repository": {
"type": "git"
},
"keywords": [
"vue.js",
"samples",
"typescript",
"webpack"
],
"license": "MIT",
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"tsx",
"json"
],
"snapshotSerializers": [
"jest-serializer-vue"
],
"transform": {
"^.+\\.(ts|tsx)$": "typescript-babel-jest"
},
"testMatch": [
"**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"
],
"testURL": "http://localhost/"
},
"devDependencies": {
"@types/jest": "^23.3.3",
"@vue/test-utils": "^1.0.0-beta.25",
"awesome-typescript-loader": "^5.0.0",
"babel-core": "^6.26.0",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-jest": "^23.6.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-env": "^1.6.1",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"jest-serializer-vue": "^2.0.2",
"mini-css-extract-plugin": "^0.4.0",
"ts-jest": "^23.10.4",
"typescript": "^2.8.3",
"typescript-babel-jest": "^1.0.5",
"url-loader": "^1.0.1",
"vue-property-decorator": "^7.2.0",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.6.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
},
"dependencies": {
"vue": "^2.5.16"
}
}