This repository has been archived by the owner on Dec 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.98 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
95
96
97
98
99
100
101
{
"name": "vue-ts-playground",
"version": "0.1.0",
"scripts": {
"serve": "vue-cli-service serve",
"serve:prod": "node scripts/serve.prod.js",
"build": "vue-cli-service build --modern",
"lint": "vue-cli-service lint --fix && stylelint \"src/**/*.{scss,vue}\"",
"test:unit": "vue-cli-service test:unit",
"test:unit:watch": "vue-cli-service test:unit --watch",
"test:unit:ci": "vue-cli-service test:unit --no-cache --coverage",
"test:e2e": "vue-cli-service test:e2e",
"test:e2e:headless": "vue-cli-service test:e2e --headless",
"format": "prettier --write \"{src,scripts,config,tests}/**/*.{js,ts,vue}\""
},
"dependencies": {
"core-js": "^2.6.0",
"lodash-es": "^4.17.11",
"register-service-worker": "1.5.2",
"rxjs": "^6.3.3",
"sanitize.css": "^8.0.0",
"tslib": "^1.9.3",
"vee-validate": "2.1.4",
"vue": "^2.5.21",
"vue-carousel-3d": "^0.1.23",
"vue-class-component": "^6.3.2",
"vue-i18n": "^8.4.0",
"vue-property-decorator": "^7.2.0",
"vue-router": "^3.0.2",
"vue-rx": "^6.0.1",
"vuetify": "^1.3.13",
"vuex": "^3.0.1",
"vuex-class": "^0.3.1",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@mapbox/stylelint-processor-arbitrary-tags": "^0.2.0",
"@types/jest": "^23.3.10",
"@types/lodash-es": "4.17.1",
"@types/webfontloader": "^1.6.29",
"@types/webpack-env": "^1.13.6",
"@vue/cli-plugin-babel": "^3.2.0",
"@vue/cli-plugin-e2e-cypress": "^3.2.0",
"@vue/cli-plugin-pwa": "^3.2.0",
"@vue/cli-plugin-typescript": "^3.2.0",
"@vue/cli-plugin-unit-jest": "^3.2.0",
"@vue/cli-service": "^3.2.0",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-core": "7.0.0-bridge.0",
"globby": "^8.0.1",
"husky": "^1.2.0",
"jest-junit": "^5.2.0",
"jest-watch-typeahead": "^0.2.0",
"lint-staged": "^8.1.0",
"lodash": "^4.17.11",
"node-sass": "^4.11.0",
"postcss-flexbugs-fixes": "^4.1.0",
"prettier": "^1.15.3",
"purgecss-webpack-plugin": "^1.4.0",
"resolve-url-loader": "^3.0.0",
"sass-loader": "^7.0.1",
"stylelint": "^9.9.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-formatter-pretty": "^1.0.3",
"stylelint-scss": "^3.4.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"ts-jest": "23.1.4",
"tslint-config-prettier": "^1.17.0",
"tslint-sonarts": "^1.8.0",
"typescript": "^3.2.2",
"vue-template-compiler": "^2.5.21"
},
"description": "Playground project using Vue.js and typescript",
"author": {
"name": "Christian Linne",
"email": "[email protected]"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test:unit:ci"
}
},
"lint-staged": {
"*.ts": [
"vue-cli-service lint --fix",
"prettier --write",
"git add"
],
"*.vue": [
"vue-cli-service lint --fix",
"stylelint",
"prettier --write",
"git add"
]
},
"jest-junit": {
"output": "./test-results/junit/junit.xml"
}
}